From ed5851eac126c18268787aeb152088dba2a0c5ae Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Sun, 11 Jan 2026 13:41:48 -0800 Subject: [PATCH] fix(install): ensure update script executable --- install/install_nomad.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/install_nomad.sh b/install/install_nomad.sh index c12a914..dc18a30 100644 --- a/install/install_nomad.sh +++ b/install/install_nomad.sh @@ -327,6 +327,7 @@ download_helper_scripts() { echo -e "${RED}#${RESET} Failed to download the update script. Please check the URL and try again." exit 1 fi + chmod +x "$update_script_path" echo -e "${GREEN}#${RESET} Helper scripts downloaded successfully to $start_script_path, $stop_script_path, and $update_script_path.\\n" }