Skip to content

Commit

Permalink
fix: updated force-start-release.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
dereekb committed Mar 17, 2022
1 parent 00c8902 commit 3b4da48
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions force-start-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ then
else
echo starting release
echo pulling latest develop branch
git checkout origin/develop
git checkout origin/develop -q
echo pushing release to origin
git push origin release
git branch release -q
git push origin release -q
echo release pushed to origin
git branch -d release
echo cleaned up release branch
fi

0 comments on commit 3b4da48

Please sign in to comment.