[gimp-web-devel/hugo] scripts: add --no-verbose to wget calls.



commit a689d3ba0a7d69d165eddec02a123b8acbc48780
Author: Jehan <jehan girinstud io>
Date:   Sun Aug 7 15:56:10 2022 +0200

    scripts: add --no-verbose to wget calls.
    
    Otherwise the CI output is basically unreadable because of the
    download progression info.

 scripts/update_api_docs.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/scripts/update_api_docs.sh b/scripts/update_api_docs.sh
index fa71d52..d21a768 100644
--- a/scripts/update_api_docs.sh
+++ b/scripts/update_api_docs.sh
@@ -4,10 +4,10 @@ function get_api_docs () {
 DOWNLOAD_URL="https://download.gimp.org/pub/gimp/v$1";
 
 echo "Looking up current revision..."
-VERSION=`wget -O - $DOWNLOAD_URL | grep "0.0_LATEST-IS" | sed "s/.*LATEST-IS-//;s|</a>.*||"`
+VERSION=`wget --no-verbose -O - $DOWNLOAD_URL | grep "0.0_LATEST-IS" | sed "s/.*LATEST-IS-//;s|</a>.*||"`
 
 echo "Getting tarball..."
-wget $DOWNLOAD_URL/gimp-$VERSION.tar.bz2
+wget --no-verbose $DOWNLOAD_URL/gimp-$VERSION.tar.bz2
 
 echo "Extracting..."
 tar xf gimp-$VERSION.tar.bz2


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]