diff options
author | Jakob Unterwurzacher | 2024-09-19 14:13:41 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2024-09-19 14:13:41 +0200 |
commit | 2ccea57eba6a646838b39e3bbaec06d247250cbb (patch) | |
tree | 5a5f61e0b4b1bbc83af14c55b3ce0ba8ce166895 /tests | |
parent | 2c01b1ab3774ace723b2700fc539dda5f0350633 (diff) |
dl-linux-tarball.bash: drop wget's "--no-progress" flag
Looks like wget does not support it anymore
$ wget --version
GNU Wget2 2.1.0 - multithreaded metalink/file/website downloader
$ ./benchmark.bash
Testing gocryptfs at /tmp/benchmark.bash.bmt: gocryptfs v2.4.0-38-g40abf96-dirty; go-fuse v2.5.0; 2024-09-03 go1.21.4 linux/amd64
/tmp/benchmark.bash.bmt.mnt is a mountpoint
Downloading linux-3.0.tar.gz
Unknown option 'show-progress'
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/dl-linux-tarball.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dl-linux-tarball.bash b/tests/dl-linux-tarball.bash index dfff492..03c0e7d 100755 --- a/tests/dl-linux-tarball.bash +++ b/tests/dl-linux-tarball.bash @@ -20,7 +20,7 @@ fi if [[ $SIZE_ACTUAL -ne $SIZE_WANT ]]; then echo "Downloading linux-3.0.tar.gz" if command -v wget > /dev/null ; then - wget -nv --show-progress -c -O "$TGZ" "$URL" + wget -nv -c -O "$TGZ" "$URL" else curl -o "$TGZ" "$URL" fi |