removed debugging exclamation

This commit is contained in:
H0mire 2024-05-06 22:07:25 +02:00
parent fb42a07f3b
commit 965a8205e3

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