aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-09-25 09:36:02 +0100
committerGitHub2016-09-25 09:36:02 +0100
commite5274c0d8103006e06351f18155b89c65ee7fe5d (patch)
treee7bcd1a9ba7db5c973ff8bc22adb8df0728753bb /Library
parent03e568e8cea1d23bdf247958422646c6032ba37e (diff)
parent5e3a26bfe04cfec43fbb366285ad10f954805620 (diff)
downloadbrew-e5274c0d8103006e06351f18155b89c65ee7fe5d.tar.bz2
Merge pull request #1129 from zmwangx/tar-no-verbose
download_strategy: never verbosely untar
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 1775e4e38..5d296e275 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -231,8 +231,7 @@ class AbstractFileDownloadStrategy < AbstractDownloadStrategy
when :bzip2_only
with_system_path { buffered_write("bunzip2") }
when :gzip, :bzip2, :compress, :tar
- # Assume these are also tarred
- tar_flags = ARGV.verbose? && ENV["TRAVIS"].nil? ? "xv" : "x"
+ tar_flags = "x"
# Older versions of tar require an explicit format flag
if cached_location.compression_type == :gzip
tar_flags << "z"