chiark / gitweb /
Install and lint were missing -q
authorDaniel Martí <mvdan@mvdan.cc>
Thu, 12 Jun 2014 19:48:45 +0000 (21:48 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Thu, 12 Jun 2014 19:48:45 +0000 (21:48 +0200)
fdroidserver/install.py
fdroidserver/lint.py

index 840fa2952dfd2bae53bc715cb1d83a7af6f05e86..146c1c59f91f662933167377a32a132e2a7c2774 100644 (file)
@@ -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()
index 0415656db791b8c945f76ab99a791d2cb9c43081..06e2f532f9456126041ef82aeeb362c0581f3304 100644 (file)
@@ -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)