Skip to content
Snippets Groups Projects
Unverified Commit 921aa015 authored by Dominyk Tiller's avatar Dominyk Tiller
Browse files

install: die if Xcode/CLT not up-to-date on prereleases

parent 1408b5ff
No related branches found
No related tags found
No related merge requests found
......@@ -227,6 +227,12 @@ module Homebrew
out = checks.send(check)
opoo out unless out.nil?
end
if OS.mac? && MacOS.prerelease?
checks.strict_development_tools_checks.each do |strict_check|
out = checks.send(strict_check)
odie out unless out.nil?
end
end
end
def check_macports
......
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