aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/os
diff options
context:
space:
mode:
authorJack Nagel2014-08-09 21:58:56 -0500
committerJack Nagel2014-08-09 22:01:28 -0500
commit62c6b281c9b32430569e533458767576a4c3020a (patch)
tree77701d0289d1dbf41f23007424a90219f3cae871 /Library/Homebrew/os
parent97af5a29f7bf2ab49803b31a88d6145c9613c16b (diff)
downloadbrew-62c6b281c9b32430569e533458767576a4c3020a.tar.bz2
Update unreleased version check
Diffstat (limited to 'Library/Homebrew/os')
-rw-r--r--Library/Homebrew/os/mac/xcode.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index b98a4a728..51f427453 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -17,7 +17,7 @@ module OS
when "10.10" then "6.0"
else
# Default to newest known version of Xcode for unreleased OSX versions.
- if MacOS.version > "10.9"
+ if MacOS.version > "10.10"
"6.0"
else
raise "Mac OS X '#{MacOS.version}' is invalid"
@@ -117,7 +117,7 @@ module OS
when 50 then "5.0"
when 51 then "5.1"
when 60 then "6.0"
- else "5.1"
+ else "6.0"
end
end
end