Skip to content
Snippets Groups Projects
Commit 5ee797eb authored by Martin Afanasjew's avatar Martin Afanasjew
Browse files

xcode: fix invalid range in comparison

Due to a typo, the range of LLVM build versions 2066 to 2325 were never
matched and thus Xcode 3.2.0 could never be inferred from that. (Only
relevant for legacy systems. Doesn't seem to have impacted any users.)
parent c55da93f
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ module OS
case MacOS.llvm_build_version.to_i
when 1..2063 then "3.1.0"
when 2064..2065 then "3.1.4"
when 2366..2325
when 2066..2325
# we have no data for this range so we are guessing
"3.2.0"
when 2326
......
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