diff --git a/install.sh b/install.sh index b31763f..9d1c678 100755 --- a/install.sh +++ b/install.sh @@ -167,12 +167,19 @@ fi # Install Compiled Servers echo "Installing compiled servers..." +INSTALL_SUCCESS=true + if ! bash install-compiled.sh; then echo "Warning: install-compiled.sh encountered errors. Some applications may not have installed correctly." + INSTALL_SUCCESS=false fi echo "" -echo "HamPackServer is installed successfully!" +if [ "$INSTALL_SUCCESS" = true ]; then + echo "HamPackServer is installed successfully!" +else + echo "HamPackServer installation completed with errors. Please review the output above." +fi echo "" read -rp "A reboot is required to complete setup. Reboot now? [y/N] " response case "$response" in