diff options
Diffstat (limited to 'Library/Homebrew/utils.rb')
| -rw-r--r-- | Library/Homebrew/utils.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 4fb84d8f4..cc146222b 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -299,6 +299,7 @@ module MacOS extend self @xcode_version ||= begin raise unless system "/usr/bin/which -s xcodebuild" `xcodebuild -version 2>&1` =~ /Xcode (\d(\.\d)*)/ + raise if $1.nil? $1 rescue # for people who don't have xcodebuild installed due to using |
