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:
Mislav Marohnić 2014-08-17 19:07:08 -07:00
parent 7a17175fc9
commit 1fa109ceb1

View file

@ -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