Web Apps: skip apt purge if webapp-manager command not found

pull/884/head
Botspot 4 years ago
parent 0b350db111
commit e1afe4edca

@ -7,7 +7,9 @@ function error {
exit 1
}
sudo apt purge webapp-manager -y || error "Failed to uninstall webapp-manager"
if command -v webapp-manager >/dev/null ;then
sudo apt purge webapp-manager -y || error "Failed to uninstall webapp-manager"
fi
#if your app installs any packages, keep this command here so those packages will be removed.
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || error "Failed to uninstall dependencies"

Loading…
Cancel
Save