Hi,

When I was running "make fetch", I found myself wanting to know the progress
of the downloads, as my internet is by no means instantaneous. So, I found
how to make wget display a nice progress bar. Could this be added to master?

Kind regards,

Luke.
diff --git a/download b/download
index 0af6751..2c1846b 100755
--- a/download
+++ b/download
@@ -129,7 +129,7 @@ downloaditem()
         if [ ! -f "../$2" ]; then
             echo $2
             if [ ! -z "$wget" ]; then
-                $wget -nv -N $1/$2 2>&1 | tee -a $logfile
+                $wget --progress=bar:force -N $1/$2 2>&1 | tee -a $logfile
             else
                 echo fetching $2
                 $curl $file_date_check -O $1/$2 2>&1 | tee -a $logfile
_______________________________________________
LibreOffice mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to