Skip to content
Snippets Groups Projects
Commit d14323b9 authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

brew-audit - check for combined make calls

parent c3c27be5
No related branches found
No related tags found
No related merge requests found
......@@ -88,6 +88,10 @@ def audit_formula_text text
problems << " * Use \"if ARGV.build_head?\" instead"
end
if text =~ /make && make/
problems << " * Use separate make calls."
end
if ARGV.include? "--warn"
if text =~ /^\t/
problems << " * Use spaces instead of tabs for indentation"
......
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