Push master and dev branches explicitly

This commit is contained in:
Ismo Vuorinen
2016-08-04 17:09:38 +03:00
parent 07ee9ad6a2
commit 964866a2e3

View File

@@ -146,6 +146,8 @@ echo -ne "${QUESTION_FLAG} ${CYAN}Push?"
read PUSH read PUSH
if [[ $PUSH =~ [yY](es)* ]] || [ "$PUSH" = "" ]; then if [[ $PUSH =~ [yY](es)* ]] || [ "$PUSH" = "" ]; then
git push --tags git push --tags
git push $BRANCH_MASTER
git push $BRANCH_DEV
fi fi
echo -e "${NOTICE_FLAG} Done!" echo -e "${NOTICE_FLAG} Done!"