aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-11-18 15:22:04 -0600
committerJack Nagel2011-11-18 15:27:09 -0600
commit7cf1b19aefa043dabb79be42dd4e95f312cf9f0a (patch)
tree5bf60bccaeb3bffb5e20ec427e20d6806d7da527 /Library
parent2ded50c36b36c7dc468a3bea04990d965d77d17e (diff)
downloadhomebrew-7cf1b19aefa043dabb79be42dd4e95f312cf9f0a.tar.bz2
audit: check for ARGV.flag? in formulae
We don't want single letter options like '-v' or '-d' to unintentionally trigger formula-specific options. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 035421081..b9d67bac6 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -120,6 +120,11 @@ def audit_formula_text name, text
problems << " * xcodebuild should be passed an explicit \"SYMROOT\""
end if strict?
+ # using ARGV.flag? for formula options is generally a bad thing
+ if text =~ /ARGV\.flag\?/
+ problems << " * Use 'ARGV.include?' instead of 'ARGV.flag?'"
+ end
+
return problems
end
@@ -128,7 +133,7 @@ def audit_formula_options f, text
# Find possible options
options = []
- text.scan(/ARGV\.(include|flag)\?[ ]*\(?(['"])(.+?)\2/) { |m| options << m[2] }
+ text.scan(/ARGV\.include\?[ ]*\(?(['"])(.+?)\1/) { |m| options << m[1] }
options.reject! {|o| o.include? "#"}
options.uniq!