From eb27714b394598b063a415c6708ba772192fb908 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Thu, 3 Dec 2020 10:58:34 +0500 Subject: [PATCH] temp: bypass php8.0 fail on ubuntu --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 7bf6d1bf8..8a67dec79 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -199,7 +199,7 @@ class InstallCyberPanel: res = os.system(command) if res != 0: - InstallCyberPanel.stdOut("Failed to install PHP on Ubuntu.", 1, 0) + InstallCyberPanel.stdOut("Failed to install PHP on Ubuntu.", 0, 1) elif self.distro == centos: command = 'yum -y groupinstall lsphp-all'