chiark / gitweb /
Install and lint were missing -q
[fdroidserver.git] / fdroidserver / install.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()