From 347aa9e6d69745c222467d7b2b65639f343aac33 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Tue, 30 Sep 2025 10:50:59 +0000 Subject: [PATCH] fix: add missing SKIP_DOWNLOAD initialization Addresses #459 #461 - Consolidates variable initialization at the top of the script alongside other defaults. Removes redundant BUILD_FROM_SOURCE initialization from argument parsing section. --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a969328f9..018694aa1 100755 --- a/install.sh +++ b/install.sh @@ -17,6 +17,8 @@ INSTALL_DIR="/opt/pulse" CONFIG_DIR="/etc/pulse" # All config and data goes here for manual installs SERVICE_NAME="pulse" GITHUB_REPO="rcourtman/Pulse" +BUILD_FROM_SOURCE=false +SKIP_DOWNLOAD=false # Wrapper for systemctl commands that might hang in unprivileged containers safe_systemctl() { @@ -2372,7 +2374,6 @@ reset_pulse() { # Parse command line arguments FORCE_VERSION="" FORCE_CHANNEL="" -BUILD_FROM_SOURCE=false SOURCE_BRANCH="main" IN_CONTAINER=false IN_DOCKER=false