From 61156e979fa4ba7f5225db3af0cf88eeffab5b02 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 12 Oct 2010 08:44:03 -0700 Subject: [PATCH] brew-audit - don't complain about --HEAD options --- Library/Contributions/examples/brew-audit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Contributions/examples/brew-audit.rb b/Library/Contributions/examples/brew-audit.rb index 28e966f7c9..54d53d903b 100755 --- a/Library/Contributions/examples/brew-audit.rb +++ b/Library/Contributions/examples/brew-audit.rb @@ -112,6 +112,7 @@ def audit_formula_options f, text if options.length > 0 options.each do |o| + next if o == '--HEAD' problems << " * Option #{o} is not documented" unless documented_options.include? o end end