diff options
| author | Mike McQuaid | 2013-10-29 16:22:46 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2013-10-30 11:28:37 -0700 |
| commit | d91644ef72be9ea5d47ff0c5b27433f0ae4ca6d5 (patch) | |
| tree | e78cc72276987d28269494c8c8e4da28dda5c21c /Library | |
| parent | 0c96d78966b1c3a46096cf0b60d9129c6bf82f37 (diff) | |
| download | homebrew-d91644ef72be9ea5d47ff0c5b27433f0ae4ca6d5.tar.bz2 | |
install: print osx-gcc-installer doctor warning.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index b24783aac..e6772a105 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -52,7 +52,9 @@ module Homebrew extend self def check_xcode require 'cmd/doctor' checks = Checks.new - %w{check_xcode_clt check_xcode_license_approved}.each do |check| + doctor_methods = ['check_xcode_clt', 'check_xcode_license_approved', + 'check_for_osx_gcc_installer'] + doctor_methods.each do |check| out = checks.send(check) opoo out unless out.nil? end |
