Skip to content

Commit

Permalink
fix SKIP_SNAPSHOTS exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
justincarter committed Aug 9, 2023
1 parent 10615a2 commit dbf73e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-images.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def main():
if os.getenv('SKIP_SNAPSHOTS', None):
if "SNAPSHOT" in args.version:
print("skipping SNAPSHOT build this run because SKIP_SNAPSHOTS env was set")
sys.exit(1)
sys.exit(0)


with open('./matrix.yaml') as matrix_file:
Expand Down

0 comments on commit dbf73e4

Please sign in to comment.