Exit with error code on specifier mismatches in format checker

This commit is contained in:
OMGeeky
2025-07-28 21:20:17 +02:00
parent c244ba1390
commit 80997ddc36

View File

@@ -204,6 +204,7 @@ def main():
print(f"\nNo specifier mismatches found for key '{args.key_name}' compared to the base language.")
else:
print(f"\nFound {issues_found} potential specifier mismatch(es) for key '{args.key_name}'.")
exit(1)
if __name__ == "__main__":
main()