removed debugging exclamation

This commit is contained in:
H0mire
2024-05-06 22:07:25 +02:00
parent f37789d2a4
commit 313f0ed178
+1 -1
View File
@@ -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