Skip to content

Commit

Permalink
fabfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Jun 10, 2022
1 parent 1bbed55 commit c5f273c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def publish(c):
print("ERROR: publish must be run from the master branch")
raise SystemExit(1)
x = c.run('git status')
if (('Your branch is up-to-date with' not in x.stdout and
if (('Your branch is up to date with' not in x.stdout and
'HEAD detached at' not in x.stdout) or
'nothing to commit' not in x.stdout):
print("ERROR: Your local git clone is dirty or not pushed to origin.")
Expand Down

0 comments on commit c5f273c

Please sign in to comment.