Browse Source

build helper: quiet curl output

Ask Bjørn Hansen 4 years ago
parent
commit
5b75b1132d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/download-release

+ 1 - 1
scripts/download-release

@@ -19,5 +19,5 @@ files=`curl -sf $BASE/checksums.txt | awk '{print $2}'`
 for f in $files; do
 for f in $files; do
   url=$BASE/$f
   url=$BASE/$f
   echo downloading $f
   echo downloading $f
-  curl -fRo $DIR/$f $url
+  curl -sfRo $DIR/$f $url
 done
 done