Skip to content
Snippets Groups Projects
Commit 3982d24d authored by Steven Peters's avatar Steven Peters
Browse files

audit: fix swapped audit messages

parent b6b98f48
No related branches found
No related tags found
No related merge requests found
......@@ -1100,11 +1100,11 @@ class FormulaAuditor
end
if line =~ /(not\s|!)\s*build\.with?\?/
problem "Don't negate 'build.without?': use 'build.with?'"
problem "Don't negate 'build.with?': use 'build.without?'"
end
if line =~ /(not\s|!)\s*build\.without?\?/
problem "Don't negate 'build.with?': use 'build.without?'"
problem "Don't negate 'build.without?': use 'build.with?'"
end
if line =~ /ARGV\.(?!(debug\?|verbose\?|value[\(\s]))/
......
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