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

Fix wrong assumption in MacOS::Xcode.without_clt?

Fixes Homebrew/homebrew#22221.
parent f142cca6
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ module MacOS::Xcode extend self
end
def without_clt?
version >= "4.3" and not MacOS::CLT.installed?
installed? && version >= "4.3" && !MacOS::CLT.installed?
end
def prefix
......
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