Skip to content

Commit

Permalink
Fix push check in generate_release.py
Browse files Browse the repository at this point in the history
  • Loading branch information
30350n committed Feb 18, 2023
1 parent b165af8 commit 0990a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def get_bl_info_bversion(path):
if Repo().is_dirty():
print("error: repo is dirty (stash changes before generating a release)")
exit()
if not "up-to-date" in Repo().git.status():
if not "up to date" in Repo().git.status():
print("error: current commit is not pushed")
exit()
if Repo().tags[-1].commit != Repo().commit():
Expand Down

0 comments on commit 0990a36

Please sign in to comment.