Skip to content
Snippets Groups Projects
Commit 86cf6f03 authored by Jack Nagel's avatar Jack Nagel
Browse files

More linewise audits

parent b4bb0bf1
No related branches found
No related tags found
No related merge requests found
......@@ -337,21 +337,21 @@ class FormulaAuditor
end
# Commented-out cmake support from default template
if (text =~ /# system "cmake/)
if line =~ /# system "cmake/
problem "Commented cmake call found"
end
# Comments from default template
if (text =~ /# PLEASE REMOVE/)
if line =~ /# PLEASE REMOVE/
problem "Please remove default template comments"
end
if (text =~ /# if this fails, try separate make\/make install steps/)
if line =~ /# if this fails, try separate make\/make install steps/
problem "Please remove default template comments"
end
if (text =~ /# if your formula requires any X11\/XQuartz components/)
if line =~ /# if your formula requires any X11\/XQuartz components/
problem "Please remove default template comments"
end
if (text =~ /# if your formula's build system can't parallelize/)
if line =~ /# if your formula's build system can't parallelize/
problem "Please remove default template comments"
end
......@@ -424,7 +424,7 @@ class FormulaAuditor
end
# xcodebuild should specify SYMROOT
if line =~ /system\s+['"]xcodebuild/ and not text =~ /SYMROOT=/
if line =~ /system\s+['"]xcodebuild/ and not line =~ /SYMROOT=/
problem "xcodebuild should be passed an explicit \"SYMROOT\""
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