aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2018-01-04 08:28:34 +0000
committerGitHub2018-01-04 08:28:34 +0000
commit069b61029b397b73ead0efe9d4ab4cbb17adf359 (patch)
tree8759a02b868d042dac934fa62b52054ee543face /Library
parentb9cb6ccca82a7b8d26cdd0f665c730a6024b78aa (diff)
parent841dae4b8c2fe7ca0eab2064e113b8286b61434c (diff)
downloadbrew-069b61029b397b73ead0efe9d4ab4cbb17adf359.tar.bz2
Merge pull request #3627 from sjackman/circleci
pathname: Use CI env variable rather than TRAVIS
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index 32d57c1c4..8e10971e1 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -499,7 +499,7 @@ module ObserverPathnameExtension
MAXIMUM_VERBOSE_OUTPUT = 100
def verbose?
- return ARGV.verbose? unless ENV["TRAVIS"]
+ return ARGV.verbose? unless ENV["CI"]
return false unless ARGV.verbose?
if total < MAXIMUM_VERBOSE_OUTPUT