We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1087d3 commit 8fe2584Copy full SHA for 8fe2584
tasks.py
@@ -28,7 +28,7 @@ def prepare(ctx, version):
28
# Ensure we're on the master branch first
29
git_rev_parse = ctx.run('git rev-parse --abbrev-ref HEAD', hide=True)
30
current_branch = git_rev_parse.stdout.strip()
31
- if current_branch != 'rel':
+ if current_branch != 'master':
32
print('You must be on master branch!')
33
raise Exit(1)
34
0 commit comments