From 9408ec3c5d22b54d038c0909926ee661fbd7c25c Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 4 Aug 2016 17:06:47 +0300 Subject: [PATCH] Change pushing to do all --- release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index ac70797..0c47a2a 100755 --- a/release.sh +++ b/release.sh @@ -141,11 +141,11 @@ git merge --no-ff $BRANCH_RELEASE # Remove release branch git branch -d $BRANCH_RELEASE -echo -ne "${QUESTION_FLAG} ${CYAN}Push to origin?" +echo -ne "${QUESTION_FLAG} ${CYAN}Push?" read PUSH if [[ $PUSH =~ [yY](es)* ]] || [ "$PUSH" = "" ]; then - git push origin --tags + git push --tags fi echo -e "${NOTICE_FLAG} Done!"