Commit 1fa109ce authored by Mislav Marohnić's avatar Mislav Marohnić
Browse files

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.
parent 7a17175f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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