0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-06 22:38:55 +00:00

fix(netdata-updater.sh): ensure tmpdir-path argument is always passed ()

This commit is contained in:
Ilya Mashchenko 2024-12-27 20:08:33 +02:00 committed by GitHub
parent cfd832964e
commit 3f1a1bd55e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -586,11 +586,13 @@ self_update() {
if _safe_download "https://raw.githubusercontent.com/netdata/netdata/master/packaging/installer/netdata-updater.sh" ./netdata-updater.sh; then
chmod +x ./netdata-updater.sh || exit 1
export ENVIRONMENT_FILE="${ENVIRONMENT_FILE}"
force_update=""
[ "$NETDATA_FORCE_UPDATE" = "1" ] && force_update="--force-update"
interactive=""
[ "$INTERACTIVE" = "0" ] && interactive="--non-interactive"
exec ./netdata-updater.sh --not-running-from-cron --no-updater-self-update "$force_update" "$interactive" --tmpdir-path "$(pwd)"
cmd="./netdata-updater.sh --not-running-from-cron --no-updater-self-update"
[ "$NETDATA_FORCE_UPDATE" = "1" ] && cmd="$cmd --force-update"
[ "$INTERACTIVE" = "0" ] && cmd="$cmd --non-interactive"
cmd="$cmd --tmpdir-path $(pwd)"
exec $cmd
else
error "Failed to download newest version of updater script, continuing with current version."
fi