Merge pull request #734 from MikeMcQuaid/brew.rb-allow-leopard

brew.rb: allow 10.5.
This commit is contained in:
Mike McQuaid 2016-08-17 15:36:37 +01:00 committed by GitHub
commit 8b04d43291

View File

@ -11,13 +11,6 @@ if ARGV == %w[--version] || ARGV == %w[-v]
exit 0
end
if OS.mac? && MacOS.version < "10.6"
abort <<-EOABORT.undent
Homebrew requires Snow Leopard or higher. For Tiger and Leopard support, see:
https://github.com/mistydemeo/tigerbrew
EOABORT
end
def require?(path)
require path
rescue LoadError => e