Skip to content

Commit

Permalink
Use exit code 0 for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandiny committed May 15, 2020
1 parent a556668 commit bdc6e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
for check_metadata in apt_action_metadata:
if (check_metadata == current_metadata):
logging.error('Loop detected, exiting')
sys.exit(1)
sys.exit(0)

logging.info('-- Done cloning current Github page --')

Expand Down

0 comments on commit bdc6e8a

Please sign in to comment.