aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-10-13 23:13:00 -0500
committerJack Nagel2014-10-13 23:13:00 -0500
commitd5b561e681a8c2dc5b50d7c1f9c3a9a0caa2fddc (patch)
tree2f6e055f9a1535fbcfbdb64e50497055c3d5be2c /Library
parent40c759185cc58cd895ae4efb262dcf409a7f30c5 (diff)
downloadhomebrew-d5b561e681a8c2dc5b50d7c1f9c3a9a0caa2fddc.tar.bz2
Remove audit whitelist
This is currently unnecessary.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index e7e3868a4..68e54999a 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -484,9 +484,7 @@ class FormulaAuditor
end
if line =~ /ARGV\.(?!(debug\?|verbose\?|value[\(\s]))/
- # Python formulae need ARGV for Requirements
- problem "Use build instead of ARGV to check options",
- :whitelist => %w{pygobject3 qscintilla2}
+ problem "Use build instead of ARGV to check options"
end
if line =~ /def options/
@@ -585,8 +583,7 @@ class FormulaAuditor
private
- def problem p, options={}
- return if options[:whitelist].to_a.include? f.name
+ def problem p
@problems << p
end
end