From 8ab66e9fa6c9827c0c8edf1274120e0c0bd9211e Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 2 Jun 2024 21:30:34 +0200 Subject: [PATCH] [DO NOT UPDATE] Fix UPDATER_VERSION --- bin/updater | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/updater b/bin/updater index dad1acef..421a0ce7 100755 --- a/bin/updater +++ b/bin/updater @@ -5,7 +5,7 @@ cd "${HOME}/.dotfiles" || ( ) # Define updater version -UPDATER_VERSION=3 +LOCAL_UPDATER_VERSION=3 case "${STAGE}" in 1) @@ -41,7 +41,7 @@ case "${STAGE}" in echo ":: S0 | Pulling updates" git pull - exec env STAGE=1 UPDATER_VERSION=${UPDATER_VERSION} "$HOME/.dotfiles/bin/updater" + exec env STAGE=1 UPDATER_VERSION=${LOCAL_UPDATER_VERSION} "$HOME/.dotfiles/bin/updater" ;; esac