mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-10-01 13:31:33 +02:00
Don't log files as they're extracted from tarball
The `-v` option for tar has been here since the beginning of ruby-build, but it's not really informative to see a list of files in the log as the list of files is guaranteed to be the same across machines since we do checksums.
This commit is contained in:
parent
7a17175fc9
commit
1fa109ceb1
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ fetch_tarball() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local tar_args="xzvf"
|
local tar_args="xzf"
|
||||||
local package_filename="${package_name}.tar.gz"
|
local package_filename="${package_name}.tar.gz"
|
||||||
|
|
||||||
if [ "$package_url" != "${package_url%bz2}" ]; then
|
if [ "$package_url" != "${package_url%bz2}" ]; then
|
||||||
|
|
Loading…
Reference in a new issue