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
This commit is contained in:
parent
0d786d42c9
commit
72113dcec6
1 changed files with 1 additions and 1 deletions
|
|
@ -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=""
|
||||
|
|
|
|||
Loading…
Reference in a new issue