diff --git a/fdroidserver/install.py b/fdroidserver/install.py index 840fa295..146c1c59 100644 --- a/fdroidserver/install.py +++ b/fdroidserver/install.py @@ -52,6 +52,8 @@ def main(): parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]") parser.add_option("-v", "--verbose", action="store_true", default=False, help="Spew out even more information than normal") + parser.add_option("-q", "--quiet", action="store_true", default=False, + help="Restrict output to warnings and errors") parser.add_option("-a", "--all", action="store_true", default=False, help="Install all signed applications available") (options, args) = parser.parse_args() diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 0415656d..06e2f532 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -150,10 +150,12 @@ def main(): # Parse command line... parser = OptionParser(usage="Usage: %prog [options] [APPID [APPID ...]]") - parser.add_option("-p", "--pedantic", action="store_true", default=False, - help="Show pedantic warnings that might give false positives") parser.add_option("-v", "--verbose", action="store_true", default=False, help="Spew out even more information than normal") + parser.add_option("-q", "--quiet", action="store_true", default=False, + help="Restrict output to warnings and errors") + parser.add_option("-p", "--pedantic", action="store_true", default=False, + help="Show pedantic warnings that might give false positives") (options, args) = parser.parse_args() config = common.read_config(options)