brew.rb: allow 10.5.

We'll keep the Homebrew installer pointing to Tigerbrew for now but as
Homebrew/brew technically has no reason to not work on 10.5 let's remove
this check.
This commit is contained in:
Mike McQuaid 2016-08-17 15:09:20 +01:00
parent 3774b4641f
commit 7cb118221e

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