From: Sylvain Beucler Date: Tue, 27 May 2014 20:25:59 +0000 (+0200) Subject: gnulib-tool: wget translations using --no-verbose rather than --quiet X-Git-Tag: v1.0~7377 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=2056a330b7fe2506d1e0bff64da82b9f6ddec9f4;p=gnulib.git gnulib-tool: wget translations using --no-verbose rather than --quiet This allows the user to see error messages if any (--quiet hides them) * gnulib-tool: Invoke wget with --no-verbose, rather than --quiet. --- diff --git a/ChangeLog b/ChangeLog index a0dbedee6d..d76591a2a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-05-27 Sylvain Beucler . + + gnulib-tool: wget translations using --no-verbose rather than --quiet + This allows the user to see error messages if any (--quiet hides them) + * gnulib-tool: Invoke wget with --no-verbose, rather than --quiet. + 2014-05-27 Sylvain Beucler gnulib-tool: adjust translation wget to avoid a https redirection diff --git a/gnulib-tool b/gnulib-tool index b852749cc2..73539204b8 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -5031,7 +5031,7 @@ s,//*$,/,' if type rsync 2>/dev/null | grep / > /dev/null; then rsync -Lrtz "${TP_RSYNC_URI}gnulib/" . else - wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib/" + wget --no-verbose -r -l1 -nd -np -A.po "${TP_URL}gnulib/" fi } )