mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Update INSTALL.sh
This commit is contained in:
@@ -616,8 +616,12 @@ install_packages() {
|
||||
else
|
||||
debug_log $PACKAGE_MANAGER -qq install "$package"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Error: Installation of $package failed."
|
||||
exit 1
|
||||
echo "Error: Installation of $package failed. Retrying.."
|
||||
$PACKAGE_MANAGER -qq install "$package"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: Installation failed. Please retry installation with '--retry' flag."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user