From 41dbeb0805d5aaad7c2657d1b82b0dea55cc8823 Mon Sep 17 00:00:00 2001 From: David Young Date: Fri, 10 Apr 2026 13:42:35 -0600 Subject: [PATCH] Try again... --- install.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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