Skip to content
Snippets Groups Projects
Commit 0161d50d authored by Mike McQuaid's avatar Mike McQuaid
Browse files

audit: handle head/devel-only correctly.

parent 307ea17b
No related branches found
No related tags found
No related merge requests found
......@@ -401,11 +401,11 @@ class FormulaAuditor
end
def audit_specs
if head_only?(formula) && formula.tap != "Homebrew/homebrew-head-only"
if head_only?(formula) && formula.tap.downcase != "homebrew/homebrew-head-only"
problem "Head-only (no stable download)"
end
if devel_only?(formula) && formula.tap != "Homebrew/homebrew-devel-only"
if devel_only?(formula) && formula.tap.downcase != "homebrew/homebrew-devel-only"
problem "Devel-only (no stable download)"
end
......
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