diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 42398f6f..f3806cf2 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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: + if output and options.verbose: # Output directly to console sys.stdout.write(line) sys.stdout.flush()