summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2019-03-19 13:14:39 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2019-03-20 08:53:14 -0400
commit2b90e7b32a9787915177fc29c723a9ae8f9e263a (patch)
tree12ef7e6659236e9781225886dbee3a734f524a97
parent64c0e9f331e37a0b9189ee20845216526adc39cd (diff)
shell: wget: Reduce verbosity
This enabled using one . per MB for progress report. This should greatly reduce the spam in the CI. Fixes #131
-rw-r--r--cerbero/utils/shell.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cerbero/utils/shell.py b/cerbero/utils/shell.py
index 86d7d026..d43cb77c 100644
--- a/cerbero/utils/shell.py
+++ b/cerbero/utils/shell.py
@@ -335,6 +335,7 @@ def download_wget(url, destination=None, check_cert=True, overwrite=False):
cmd += " --tries=2"
cmd += " --timeout=10.0"
+ cmd += " --progress=dot:giga"
try:
call(cmd, path)