diff options
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 9cb17bbb..1879a52c 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -98,7 +98,7 @@ parser = argparse.ArgumentParser() group = parser.add_mutually_exclusive_group() group.add_argument("-d", "--debug", action="store_true") group.add_argument("-q", "--quiet", action="store_true") -group.add_argument("--skip-database-connection", action="store_true", +parser.add_argument("--skip-database-connection", action="store_true", help="skip connecting to database") parser.add_argument("--ignore-missing-files", action="store_true", help="useful for local testing, where you don't have all the build logs, etc..") |