diff --git a/src/main-filter.py b/src/main-filter.py index 3cd41cf..c37529e 100644 --- a/src/main-filter.py +++ b/src/main-filter.py @@ -123,7 +123,7 @@ def main(): # If we found nothing, return code 2 if len(matches) == 0: - sys.exit(2) + sys.exit(1) if __name__ == '__main__': try: diff --git a/src/main-verify.py b/src/main-verify.py index be107c5..446ba46 100644 --- a/src/main-verify.py +++ b/src/main-verify.py @@ -124,7 +124,7 @@ def main(): if any_verified and not any_fail: sys.exit(0) else: - sys.exit(2) + sys.exit(1) if __name__ == '__main__': try: