From 5c24876d024e3789fe5e87e31e9315c0eb1dfee6 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 15 Jun 2014 23:26:07 -0500 Subject: [PATCH] Fix audit suggestion --- Library/Homebrew/cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 1182e73285..1b46161cac 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/