Compare commits

..

No commits in common. "8c0505a0772fed93c1d6b00276720a526471b7be" and "5f0d8e8d2d6625f5e7b3c7ce4f638e564da7a657" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -122,8 +122,7 @@ def main():
write_file.write(args.outfile, matches)
# If we found nothing, return code 2
if len(matches) == 0:
sys.exit(1)
sys.exit(2)
if __name__ == '__main__':
try:

View File

@ -124,7 +124,7 @@ def main():
if any_verified and not any_fail:
sys.exit(0)
else:
sys.exit(1)
sys.exit(2)
if __name__ == '__main__':
try: