chiark / gitweb /
Always print command output when --verbose
[fdroidserver.git] / fdroidserver / common.py
index ce3acc12fa3a21bb0ac9d68ca7c9c297b55350c0..f21a0e7190f47b068882ba339fc9bdd58fbd980d 100644 (file)
@@ -1666,7 +1666,7 @@ def FDroidPopen(commands, cwd=None, shell=False, output=True):
     while not stdout_reader.eof():
         while not stdout_queue.empty():
             line = stdout_queue.get()
-            if output and options.verbose:
+            if output or options.verbose:
                 # Output directly to console
                 sys.stderr.write(line)
                 sys.stderr.flush()