fix: correct failing to push into builds repo on rerun

This commit is contained in:
Misko Hevery 2016-06-14 21:28:37 -07:00
parent 5941c92a31
commit 17f317d31e
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ function publishRepo {
git commit -m "${COMMIT_MSG}" && \
git push origin master && \
git tag "${BUILD_VER}" && \
git push origin --tags
git push origin --tags --force
)
}