Skip to content
Snippets Groups Projects
Commit d98ff95b authored by Jack Nagel's avatar Jack Nagel
Browse files

These also get coerced to strings

parent 49c9097b
No related branches found
No related tags found
No related merge requests found
......@@ -16,10 +16,10 @@ module MacOS::XQuartz extend self
# system X11 distribution, we can't get the version from pkgutil, so
# just use the expected version.
case MacOS.version
when 10.5 then "2.1.6"
when 10.6 then "2.3.6"
when 10.7 then "2.6.3"
else "dunno"
when '10.5' then '2.1.6'
when '10.6' then '2.3.6'
when '10.7' then '2.6.3'
else 'dunno'
end
else
# Finally, try to find it via pkgutil. This is slow, and only works
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment