aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-02-04 14:42:37 -0600
committerJack Nagel2013-02-04 14:42:39 -0600
commit0dd05533d8202fc8dae822928e2b5471b98364ae (patch)
tree6010c3e0dd2f12606a32f45eabac07a23e10fbde /Library
parentc9ce32d638bb2d0ad0d86f86bc0a08d45b0e8830 (diff)
downloadhomebrew-0dd05533d8202fc8dae822928e2b5471b98364ae.tar.bz2
Xcode.version: return dunno as a string and not a symbol
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/macos/xcode.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/macos/xcode.rb b/Library/Homebrew/macos/xcode.rb
index 28e825261..0bb68636a 100644
--- a/Library/Homebrew/macos/xcode.rb
+++ b/Library/Homebrew/macos/xcode.rb
@@ -109,7 +109,7 @@ module MacOS::Xcode extend self
"4.0"
else
case (MacOS.clang_version.to_f * 10).to_i
- when 0 then :dunno
+ when 0 then "dunno"
when 1..14 then "3.2.2"
when 15 then "3.2.4"
when 16 then "3.2.5"