================
@@ -185,6 +191,8 @@ def main():
diff_string = "".join(diff)
if len(diff_string) > 0:
sys.stdout.write(diff_string)
+ if args.non_zero_exit_code:
+ sys.exit(1)
----------------
HazardyKnusperkeks wrote:But it may be a breaking change for others if it suddenly does not return 0. https://github.com/llvm/llvm-project/pull/70883 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
