From 9014add55126f10e49f50698bca783281a79ba60 Mon Sep 17 00:00:00 2001 From: takiguchi Date: Tue, 13 Aug 2019 21:50:41 +0200 Subject: [PATCH] Correct release script syntax. --- src/main/bash/do-release.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/bash/do-release.bash b/src/main/bash/do-release.bash index b89e260..35fd8ef 100644 --- a/src/main/bash/do-release.bash +++ b/src/main/bash/do-release.bash @@ -47,11 +47,11 @@ echo 'Git commit and push' cd minager-properties git add application-prod.yml git commit -m "Set version for next iteration: $NEXT_VERSION" -git push +git push origin master cd .. # Minager git add pom.xml git add src/main/ts/src/environments/environment.prod.ts git commit -m "Set version for next iteration: $NEXT_VERSION" -git push \ No newline at end of file +git push origin master \ No newline at end of file