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
commit950c9b0bee5d700705effc4315323fc309b20852 (patch)
tree94a5246aed798397f9af2f8372b662b7c7396e5f /Library/Homebrew/cmd/install.rb
parent7ce40f75c51704f396c64c0ebc4c8cd4f45d9e89 (diff)
downloadhomebrew-950c9b0bee5d700705effc4315323fc309b20852.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