Skip to content

Commit

Permalink
Made the fatal error (version not according to the agreed pattern) ac…
Browse files Browse the repository at this point in the history
…tually exit the program.
  • Loading branch information
Noctunus committed Sep 19, 2024
1 parent 17a51d7 commit 8067edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dependency_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def find_latest_proto_files(directory):
version_number = int(version[1:]) # Strip 'v' and convert to int
except:
print(f"[FATAL] Didn't we say that we'll use only v<int> as version? File does not match with pattern: {relative_path}")

sys.exit(3)

# Create a key for the file using prefix and filename
key = (prefix, filename)
Expand Down

0 comments on commit 8067edf

Please sign in to comment.