From 5e3a26bfe04cfec43fbb366285ad10f954805620 Mon Sep 17 00:00:00 2001
From: Zhiming Wang <zmwangx@gmail.com>
Date: Sat, 24 Sep 2016 19:53:43 -0400
Subject: [PATCH] download_strategy: never verbosely untar

The verbose mode of tar is too pointlessly verbose.
---
 Library/Homebrew/download_strategy.rb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 1775e4e38d..5d296e2750 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"
-- 
GitLab