[Libreoffice-commits] .: download
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Tue Nov 13 07:43:20 PST 2012
download | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit c1c4555ae73697fbe4c689fa1727b3281d83ad01
Author: gerhard oettl <lodev at ogersoft.at>
Date: Tue Nov 13 16:26:29 2012 +0100
Make wget a little more independend from the local .wgetrc config.
wget --config=/dev/null would ignore ALL local settings,
but interfers maybe too much - proxy auth for example.
So adjust only some settings.
--
M download
Change-Id: I3dad22c4a4e18a480a7157ad3cc903c6a0725a4e
Reviewed-on: https://gerrit.libreoffice.org/1046
Reviewed-by: Tor Lillqvist <tml at iki.fi>
Tested-by: Tor Lillqvist <tml at iki.fi>
diff --git a/download b/download
index 9a54e7c..6e8762a 100755
--- a/download
+++ b/download
@@ -131,7 +131,7 @@ downloaditem()
if [ ! -f "../$2" ]; then
echo $2
if [ ! -z "$wget" ]; then
- $wget --progress=dot:mega -N $1/$2 2>&1 | tee -a $logfile
+ $wget --progress=dot:mega -Q 0 -P "." -l 0 -nd -nH -N $1/$2 2>&1 | tee -a $logfile
else
echo fetching $2
$curl $file_date_check -O $1/$2 2>&1 | tee -a $logfile
More information about the Libreoffice-commits
mailing list