aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils
diff options
context:
space:
mode:
authorMike McQuaid2017-11-13 10:43:35 +0000
committerGitHub2017-11-13 10:43:35 +0000
commit2225febfb396f7db3ccf0c68feae6143128d9935 (patch)
treea360ee81ce8eb3aa57b3a7c9e20541da95f069de /Library/Homebrew/utils
parent441c212f2dd70f053ee21eac8398c5fe5dfd0551 (diff)
parent5241d07474586f85f513357a989ecbb74ea69c30 (diff)
downloadbrew-2225febfb396f7db3ccf0c68feae6143128d9935.tar.bz2
Merge pull request #3443 from MikeMcQuaid/env-filtering-travis
environment filtering: pass through TRAVIS vars.
Diffstat (limited to 'Library/Homebrew/utils')
-rw-r--r--Library/Homebrew/utils/curl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils/curl.rb b/Library/Homebrew/utils/curl.rb
index eaa81352c..5becf8203 100644
--- a/Library/Homebrew/utils/curl.rb
+++ b/Library/Homebrew/utils/curl.rb
@@ -27,7 +27,7 @@ def curl_args(*extra_args, show_output: false, user_agent: :default)
args << "--fail"
args << "--progress-bar" unless ARGV.verbose?
args << "--verbose" if ENV["HOMEBREW_CURL_VERBOSE"]
- args << "--silent" if !$stdout.tty? || ENV["TRAVIS"]
+ args << "--silent" if !$stdout.tty? || ENV["HOMEBREW_TRAVIS"]
end
args + extra_args