diff --git a/script/git_tag.sh b/script/git_tag.sh index 28eddcdc8d..49bfa74b72 100755 --- a/script/git_tag.sh +++ b/script/git_tag.sh @@ -31,7 +31,7 @@ target_remote=$2 git branch -D ${target_staging} || true git checkout -b ${target_staging} git add * || true -git commit -a -m "Release ${target_version}" +git commit -a -m "Release ${target_version}" || true git tag --force ${target_tag} ${target_staging} git push --force ${target_remote} ${target_tag}