run ./gradlew test not gw-test alias in git-pull-...

This commit is contained in:
Michael Hönnig 2024-09-13 13:20:07 +02:00 committed by Michael Hoennig
parent ee497da019
commit b76bd5664d

View File

@ -11,7 +11,7 @@ while true; do
REMOTE=$(git rev-parse origin/$BRANCH)
# check if the local branch differs from the remote branch
if [ "$LOCAL" == "$REMOTE" ]; then
if [ "$LOCAL" != "$REMOTE" ]; then
echo "pulling changes from origin"
git pull origin $BRANCH