From ec76d58474acf1e3f4e83b5928b9938ffc922eff Mon Sep 17 00:00:00 2001 From: naskya Date: Wed, 15 Nov 2023 13:23:36 +0900 Subject: [PATCH] fix: also check neko/update is modified on upgrade --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 6c7949c7f..d17a22b98 100755 --- a/update.sh +++ b/update.sh @@ -24,7 +24,7 @@ br ## check if the update script itself is updated say "Checking if the update script itself has been modified by this update..." -if [ "$(git diff "${OLD_COMMIT}" "${NEW_COMMIT}" update.sh)" != "" ]; then +if [ "$(git diff "${OLD_COMMIT}" "${NEW_COMMIT}" update.sh neko/update)" != "" ]; then say "Oh meow, that seems to be the case." say "I'm sorry to bother you, but please run this script again!" exit 1