removed debugging stuff

This commit is contained in:
H0mire 2024-05-06 22:21:35 +02:00
parent 38aa15457d
commit 45a5d18245

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
@ -158,7 +158,7 @@ else
fi
# Then update the repository
if ! git pull; then
if git pull; then
echo "Git pull successful."
else
# If the pull failed, clone the repository to a temporary folder and copy the files from there