Skip to content
Snippets Groups Projects
Commit 14e8f252 authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #1792 from javian/whitelistphpshadowedheader

Whitelist PHP formulas in shadowed header audit check
parents f3460f64 80b7d4c1
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
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