summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@debian.org>2016-11-27 16:58:31 +0100
committerHolger Levsen <holger@layer-acht.org>2016-11-27 17:07:41 +0100
commit30df688617dd7a7b0e6f8b1e1d7d596c5743604f (patch)
treea11ac1c75bae48805f9d0fe5b71c7902d3b55b37 /bin/reproducible_common.py
parentfbbe2e4d2d17d2380b93ced402477cb661cc0e31 (diff)
downloadjenkins.debian.net-30df688617dd7a7b0e6f8b1e1d7d596c5743604f.tar.xz
reproducible debian: common: --skip-database-connection doesn't need to be mutually exclusive with -q and -d
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py2
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..")