Skip to content

Commit

Permalink
fix: fix typo in branch comparison for release
Browse files Browse the repository at this point in the history
  • Loading branch information
hferentschik committed Mar 30, 2020
1 parent 5fe7193 commit 080f464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo $version | grep -q 'v[0-9]\+\.[0-9]\+\.[0-9]\+' || (echo "Specified release

# make sure we are on master and have no uncommited changes
branch=$(git rev-parse --abbrev-ref HEAD)
if [ "$branch" != "issue-47" ]; then
if [ "$branch" != "master" ]; then
echo "You need to be on master to release" >&2
exit 1
fi
Expand Down

0 comments on commit 080f464

Please sign in to comment.