We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84313b0 commit b28bd6cCopy full SHA for b28bd6c
entrypoint.sh
@@ -31,11 +31,11 @@ sh -c "git config --global core.askPass /cred-helper.sh"
31
sh -c "git config --global credential.helper cache"
32
sh -c "git remote add mirror $*"
33
sh -c "echo pushing to $branch branch at $(git remote get-url --push mirror)"
34
-if ["$FORCE_PUSH" = "true"]
+if [ "$FORCE_PUSH" = "true" ]
35
then
36
-sh -c "git push --force mirror $branch"
+ sh -c "git push --force mirror $branch"
37
else
38
-sh -c "git push mirror $branch"
+ sh -c "git push mirror $branch"
39
fi
40
41
sleep $POLL_TIMEOUT
0 commit comments