brew/Library/Homebrew/extend/os/mac/blacklist.rb

17 lines
342 B
Ruby
Raw Normal View History

2016-07-16 21:02:16 +01:00
def blacklisted?(name)
case name.downcase
when "xcode"
if MacOS.version >= :lion
<<-EOS.undent
Xcode can be installed from the App Store.
EOS
else
<<-EOS.undent
Xcode can be installed from https://developer.apple.com/xcode/downloads/
EOS
end
else
generic_blacklisted?(name)
end
end