From 17f317d31efbd68bc6bec73f56c8ce039825d23b Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Tue, 14 Jun 2016 21:28:37 -0700 Subject: [PATCH] fix: correct failing to push into builds repo on rerun --- scripts/publish/publish-build-artifacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish/publish-build-artifacts.sh b/scripts/publish/publish-build-artifacts.sh index 1b493dd9e3..d85dfe6732 100755 --- a/scripts/publish/publish-build-artifacts.sh +++ b/scripts/publish/publish-build-artifacts.sh @@ -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 ) }