Try again...

This commit is contained in:
David Young
2026-04-10 13:42:35 -06:00
parent e3c519f027
commit 41dbeb0805

View File

@@ -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