From 965a8205e3a018f67e491523bbb2f4c0ef6777b0 Mon Sep 17 00:00:00 2001 From: H0mire Date: Mon, 6 May 2024 22:07:25 +0200 Subject: [PATCH] removed debugging exclamation --- update-dots.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-dots.sh b/update-dots.sh index 77daa97e..5179198e 100644 --- a/update-dots.sh +++ b/update-dots.sh @@ -58,7 +58,7 @@ if ! git fetch; then fi # Check if there are any changes -if [[ ! $(git rev-list HEAD...origin/$current_branch --count) -eq 0 ]]; then +if [[ $(git rev-list HEAD...origin/$current_branch --count) -eq 0 ]]; then echo "Repository is already up-to-date. Do not run git pull before this script. Exiting." exit 0 fi