Merge pull request #1792 from javian/whitelistphpshadowedheader

Whitelist PHP formulas in shadowed header audit check
This commit is contained in:
Mike McQuaid 2017-01-07 12:18:14 +00:00 committed by GitHub
commit 14e8f252ad

View File

@ -6,6 +6,8 @@ module FormulaCellarChecks
formula.name.start_with?(formula_name)
end
return if formula.name =~ /^php\d+$/
return if MacOS.version < :mavericks && formula.name.start_with?("postgresql")
return if MacOS.version < :yosemite && formula.name.start_with?("memcached")