From 025e53c321e06f1cf42139324124b8d3f31163f4 Mon Sep 17 00:00:00 2001
From: Mike McQuaid <mike@mikemcquaid.com>
Date: Sat, 26 Nov 2016 13:09:59 +0000
Subject: [PATCH] diagnostic: silence outdated Travis Xcode warning.

This doesn't add any value and stops us from testing `brew doctor` and
others from running `brew doctor` on Travis CI.
---
 Library/Homebrew/extend/os/mac/diagnostic.rb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Library/Homebrew/extend/os/mac/diagnostic.rb b/Library/Homebrew/extend/os/mac/diagnostic.rb
index db054ea4c7..157e7982bf 100644
--- a/Library/Homebrew/extend/os/mac/diagnostic.rb
+++ b/Library/Homebrew/extend/os/mac/diagnostic.rb
@@ -69,6 +69,9 @@ module Homebrew
         return unless MacOS::Xcode.installed?
         return unless MacOS::Xcode.outdated?
 
+        # Travis CI images are going to end up outdated so don't complain.
+        return if ENV["TRAVIS"]
+
         message = <<-EOS.undent
           Your Xcode (#{MacOS::Xcode.version}) is outdated.
           Please update to Xcode #{MacOS::Xcode.latest_version} (or delete it).
-- 
GitLab