Unverified Commit 4c07370a authored by Mislav Marohnić's avatar Mislav Marohnić
Browse files

Abandon using `--show-progress` for wget

It seems like there exist platforms that have wget which does not
support the `--show-progress` option. This reverts to using wget in its
default verbose mode where a progress bar and bunch more information are
printed to stderr.
parent bb18f12e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -445,7 +445,7 @@ http_head_wget() {

http_get_wget() {
  # shellcheck disable=SC2086
  log_command wget -nv --show-progress $WGET_OPTS -O "$2" "$1" 2>&3
  log_command wget $WGET_OPTS -O "$2" "$1" 2>&3
}

fetch_tarball() {