From 618ff5ed0ca2284dc4508516d2ff12a013bfd898 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 3 Jun 2020 10:33:59 +0500 Subject: [PATCH] bug fix: remove php 7.1 from cent8 --- managePHP/phpManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/managePHP/phpManager.py b/managePHP/phpManager.py index b22b33780..b818850c8 100755 --- a/managePHP/phpManager.py +++ b/managePHP/phpManager.py @@ -14,7 +14,7 @@ class PHPManager: distro = ProcessUtilities.decideDistro() if distro == ProcessUtilities.centos: if distro == ProcessUtilities.cent8: - return ['PHP 7.1', 'PHP 7.2', 'PHP 7.3', 'PHP 7.4'] + return ['PHP 7.2', 'PHP 7.3', 'PHP 7.4'] return ['PHP 5.3', 'PHP 5.4', 'PHP 5.5', 'PHP 5.6', 'PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3', 'PHP 7.4'] else: return ['PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3', 'PHP 7.4']