mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
Add --quiet option, restricting output to warnings/errors
This commit is contained in:
parent
5920d636dc
commit
37dda9414c
12 changed files with 30 additions and 6 deletions
|
@ -37,6 +37,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("--nosvn", action="store_true", default=False,
|
||||
help="Skip svn repositories - for test purposes, because they are too slow.")
|
||||
(options, args) = parser.parse_args()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue