aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorJack Nagel2013-05-22 22:26:09 -0500
committerJack Nagel2013-05-22 22:30:38 -0500
commit3755b33a97bf45f3505c4d9fb6f86a06643b35b1 (patch)
treeda7e2fa322bdb97faac829d6da6977608ded6468 /Library/Homebrew/cmd/install.rb
parentb2ff6e934bad87aaa4a8f4f7d3bc66fa87e8e72b (diff)
downloadbrew-3755b33a97bf45f3505c4d9fb6f86a06643b35b1.tar.bz2
Refactor Xcode/CLT version checks
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index f44f67091..c0aa1a2e9 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -42,7 +42,7 @@ module Homebrew extend self
def check_xcode
require 'cmd/doctor'
checks = Checks.new
- %w{check_for_latest_xcode check_xcode_license_approved}.each do |check|
+ %w{check_xcode_clt check_xcode_license_approved}.each do |check|
out = checks.send(check)
opoo out unless out.nil?
end