Skip to content

Commit b28bd6c

Browse files
committed
Fix formatting
1 parent 84313b0 commit b28bd6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ sh -c "git config --global core.askPass /cred-helper.sh"
3131
sh -c "git config --global credential.helper cache"
3232
sh -c "git remote add mirror $*"
3333
sh -c "echo pushing to $branch branch at $(git remote get-url --push mirror)"
34-
if ["$FORCE_PUSH" = "true"]
34+
if [ "$FORCE_PUSH" = "true" ]
3535
then
36-
sh -c "git push --force mirror $branch"
36+
sh -c "git push --force mirror $branch"
3737
else
38-
sh -c "git push mirror $branch"
38+
sh -c "git push mirror $branch"
3939
fi
4040

4141
sleep $POLL_TIMEOUT

0 commit comments

Comments
 (0)