From 1fa109ceb1b8be2acef16ab03faaf529c1e190d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Sun, 17 Aug 2014 19:07:08 -0700 Subject: [PATCH] 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. --- bin/ruby-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ruby-build b/bin/ruby-build index 768deb16..af7d4def 100755 --- a/bin/ruby-build +++ b/bin/ruby-build @@ -277,7 +277,7 @@ fetch_tarball() { fi fi - local tar_args="xzvf" + local tar_args="xzf" local package_filename="${package_name}.tar.gz" if [ "$package_url" != "${package_url%bz2}" ]; then