Skip to content

Commit

Permalink
Forgot to revert test branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
agjohnson committed Dec 15, 2017
1 parent f1087d3 commit 8fe2584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def prepare(ctx, version):
# Ensure we're on the master branch first
git_rev_parse = ctx.run('git rev-parse --abbrev-ref HEAD', hide=True)
current_branch = git_rev_parse.stdout.strip()
if current_branch != 'rel':
if current_branch != 'master':
print('You must be on master branch!')
raise Exit(1)

Expand Down

0 comments on commit 8fe2584

Please sign in to comment.