From 72113dcec69d6b9dd5431ee97ccc115ff75a3d12 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 1 Dec 2025 06:02:42 +0000 Subject: [PATCH] Fix sensor-proxy installer to download latest release by default The VERSION variable was hardcoded to v4.32.0 instead of being empty, which prevented the "fetch latest release" logic from running. When VERSION is empty, REQUESTED_VERSION defaults to "latest" which triggers proper release detection via GitHub API. Related to #738 --- scripts/install-sensor-proxy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-sensor-proxy.sh b/scripts/install-sensor-proxy.sh index e873c52..8afa8e7 100755 --- a/scripts/install-sensor-proxy.sh +++ b/scripts/install-sensor-proxy.sh @@ -1149,7 +1149,7 @@ EOF # Parse arguments first to check for standalone mode CTID="" -VERSION="v4.32.0" +VERSION="" LOCAL_BINARY="" QUIET=false PULSE_SERVER=""