Skip to content

Commit

Permalink
Exit with non-zero exit-code on error [fix #196]
Browse files Browse the repository at this point in the history
  • Loading branch information
hoijui committed May 18, 2024
1 parent c1ad9f3 commit f5bb982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylode/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def main():
raise ValueError(f"Unexpected profile type '{args.profile}'")
except PylodeError as e:
print("ERROR: " + str(e))
exit()
exit(1)

pylode_kwargs = {}

Expand Down

0 comments on commit f5bb982

Please sign in to comment.