Skip to content

Commit

Permalink
Merge pull request #204 from elevont/nonZeroExit
Browse files Browse the repository at this point in the history
Exit with non-zero exit-code on error [fix #196]
  • Loading branch information
nicholascar authored Jul 26, 2024
2 parents 331e35b + f5bb982 commit 2aa63f1
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 @@ -68,7 +68,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 2aa63f1

Please sign in to comment.