Merge pull request #1097 from DomT4/software_dev_is_hard

diagnostic: make using outdated dev tools fatal
This commit is contained in:
Mike McQuaid 2016-09-23 17:49:01 +01:00 committed by GitHub
commit 81e325cdb7

View File

@ -14,13 +14,13 @@ module Homebrew
end
def fatal_development_tools_checks
if MacOS.prerelease?
if ENV["TRAVIS"] || ARGV.homebrew_developer?
%w[
check_xcode_up_to_date
check_clt_up_to_date
]
else
%w[
check_xcode_up_to_date
check_clt_up_to_date
]
end
end