appimage: Remove references to deployment scripts in logging

This commit is contained in:
Mike Salvatore 2021-04-30 07:49:28 -04:00
parent 7ab7e56b4c
commit 9f150bb51a
1 changed files with 4 additions and 2 deletions

View File

@ -73,7 +73,7 @@ handle_error() {
log_message() {
echo -e "\n\n"
echo -e "DEPLOYMENT SCRIPT: $1"
echo -e "APPIMAGE BUILDER: $1"
}
install_nodejs() {
@ -344,6 +344,8 @@ case "$1" in
esac
done
log_message "Building Monkey Island AppImage package."
if ! $as_root && is_root; then
log_message "Please don't run this script as root"
exit 1
@ -367,5 +369,5 @@ setup_appdir "$agent_binary_dir" "$monkey_repo"
build_appimage "$monkey_version"
log_message "Deployment script finished."
log_message "AppImage build script finished."
exit 0