aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-06-16 20:02:10 -0400
committerJack Nagel2015-06-16 20:02:10 -0400
commitf59b164733bcb1edb5644eac9733201a5e53cb86 (patch)
tree7797dca62987692eea8955d09589191b7cd39b2c /Library
parentf4027cc9ac9f8dc284a163559e475396373729cb (diff)
downloadbrew-f59b164733bcb1edb5644eac9733201a5e53cb86.tar.bz2
Add explicit branch for 10.11 in Xcode version list
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/os/mac/xcode.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index ac8609f23..933cc34df 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -15,9 +15,10 @@ module OS
when "10.8" then "5.1.1"
when "10.9" then "6.2"
when "10.10" then "6.3.2"
+ when "10.11" then "7.0"
else
# Default to newest known version of Xcode for unreleased OSX versions.
- if MacOS.version > "10.10"
+ if MacOS.version > "10.11"
"7.0"
else
raise "OS X '#{MacOS.version}' is invalid"