diff options
| author | Mike McQuaid | 2017-04-02 17:49:12 +0100 |
|---|---|---|
| committer | GitHub | 2017-04-02 17:49:12 +0100 |
| commit | 8ea778f7c7ea790694485030d105a92a9416ef33 (patch) | |
| tree | 83445b4f6298d15355ac254105d65b405cd21b33 /Library/Homebrew/extend/os/mac/diagnostic.rb | |
| parent | fabc5bc8930643077a0f510006f1ef46f60d9a2e (diff) | |
| parent | a084776f95d6bb94985cc6f74757b40e4e4ba57b (diff) | |
| download | brew-1.1.12.tar.bz2 | |
Merge pull request #2412 from EricFromCanada/master1.1.12
Xcode: update supported versions & download URLs for 8.3
Diffstat (limited to 'Library/Homebrew/extend/os/mac/diagnostic.rb')
| -rw-r--r-- | Library/Homebrew/extend/os/mac/diagnostic.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Homebrew/extend/os/mac/diagnostic.rb b/Library/Homebrew/extend/os/mac/diagnostic.rb index c7dabde2b..fb6b30836 100644 --- a/Library/Homebrew/extend/os/mac/diagnostic.rb +++ b/Library/Homebrew/extend/os/mac/diagnostic.rb @@ -81,6 +81,12 @@ module Homebrew return unless MacOS::CLT.installed? return unless MacOS::CLT.outdated? + # Travis CI images are going to end up outdated so don't complain when + # `brew test-bot` runs `brew doctor` in the CI for the Homebrew/brew + # repository. This only needs to support whatever CI provider + # Homebrew/brew is currently using. + return if ENV["TRAVIS"] + <<-EOS.undent A newer Command Line Tools release is available. #{MacOS::CLT.update_instructions} |
