mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Don't output everything when using --verbose
This is especially painful when using stuff like aapt to obtain data
This commit is contained in:
parent
5500787935
commit
25268a728d
1 changed files with 1 additions and 1 deletions
|
@ -1597,7 +1597,7 @@ def FDroidPopen(commands, cwd=None, shell=False, output=False):
|
|||
while not stdout_reader.eof():
|
||||
while not stdout_queue.empty():
|
||||
line = stdout_queue.get()
|
||||
if output or options.verbose:
|
||||
if output:
|
||||
# Output directly to console
|
||||
sys.stdout.write(line)
|
||||
sys.stdout.flush()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue