Skip to content

Commit

Permalink
jldownload: make quieter
Browse files Browse the repository at this point in the history
Disables progress bars, which are often illegible anyways with parallel
make invocations.
  • Loading branch information
vtjnash committed Dec 22, 2020
1 parent 61bbf52 commit 75be274
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps/tools/jldownload
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ CURL=$(which curl 2>/dev/null)
FETCH=$(which fetch 2>/dev/null)

TIMEOUT=15 # seconds
WGET_OPTS="--no-check-certificate --tries=1 --timeout=$TIMEOUT"
CURL_OPTS="-fkL --connect-timeout $TIMEOUT -y $TIMEOUT"
FETCH_OPTS="-T $TIMEOUT"
WGET_OPTS="-nv --no-check-certificate --no-use-server-timestamps --tries=1 --timeout=$TIMEOUT"
CURL_OPTS="-fkLSs --connect-timeout $TIMEOUT -y $TIMEOUT"
FETCH_OPTS="--no-mtime -T $TIMEOUT"

if [ $# -eq 1 ]; then
CURL_OPTS="$CURL_OPTS -O"
Expand Down

0 comments on commit 75be274

Please sign in to comment.