Skip to content

Commit

Permalink
Change exit code when migration fails
Browse files Browse the repository at this point in the history
  • Loading branch information
JBorrow committed Feb 6, 2024
1 parent 0cd0218 commit d011d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librarian_server_scripts/librarian_server_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def main():
)
if return_value != 0:
log.debug("Error creating or updating the database. Exiting.")
exit(0)
exit(1)
else:
log.debug("Successfully created or updated the database.")

Expand Down

0 comments on commit d011d6a

Please sign in to comment.