Skip to content

Commit

Permalink
Merge pull request #2267 from SeldonIO/axsaucedo-patch-1
Browse files Browse the repository at this point in the history
Fix create release script bug
  • Loading branch information
axsaucedo authored Aug 13, 2020
2 parents f70e5ec + 4019498 commit 72088f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/create-release
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ git checkout master
set +o errexit
git checkout -b $BRANCH_NAME
RETVAL=$?
if [[ ${RETVAL} -eq 0 ]]; then
if [[ ${RETVAL} -gt 0 ]]; then
echo "Branch already exists"
git checkout $BRANCH_NAME
git rebase master
Expand Down

0 comments on commit 72088f3

Please sign in to comment.