From 277b222b237c4df832f96ff7bbb6424389589083 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Mon, 1 Jun 2020 14:16:25 +0500 Subject: [PATCH] minor fix in install --- cyberpanel.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 1f5721acd..0d050a3b6 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -1019,7 +1019,13 @@ fi if [[ $debug == "1" ]] ; then - pip3.6 install --ignore-installed /usr/local/pip-packs/* + + if [[ $UBUNTU_20 == "False" ]] ; then + pip3.6 install --ignore-installed /usr/local/pip-packs/* + else + pip3.6 install --ignore-installed /usr/local/packages/* + fi + if [[ $REDIS_HOSTING == "Yes" ]] ; then /usr/local/CyberPanel/bin/python install.py $SERVER_IP $SERIAL_NO $LICENSE_KEY --postfix $POSTFIX_VARIABLE --powerdns $POWERDNS_VARIABLE --ftp $PUREFTPD_VARIABLE --redis enable else