aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-06-15 23:26:07 -0500
committerJack Nagel2014-06-15 23:28:06 -0500
commit5c24876d024e3789fe5e87e31e9315c0eb1dfee6 (patch)
treeb239cebdb96adab111962e6293f449dea84ebe9f
parent89ba5b2b0a9ba25aacd51baa367d963d9915f62f (diff)
downloadbrew-5c24876d024e3789fe5e87e31e9315c0eb1dfee6.tar.bz2
Fix audit suggestion
-rw-r--r--Library/Homebrew/cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 1182e7328..1b46161ca 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -416,7 +416,7 @@ class FormulaAuditor
end
if line =~ /if\s+ARGV\.include\?\s+'--(HEAD|devel)'/
- problem "Use \"if ARGV.build_#{$1.downcase}?\" instead"
+ problem "Use \"if build.#{$1.downcase}?\" instead"
end
if line =~ /make && make/