Merge pull request #2304 from rbenv/fix-wget

Abandon using `--show-progress` for wget
This commit is contained in:
Mislav Marohnić 2023-11-09 02:08:54 +01:00 committed by GitHub
commit 270ecd0bcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -444,7 +444,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() {