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
commit09d53f4fc567dfafb6d9c71742f4633762f55d7c (patch)
tree02fd84db5fd3493ffb2eaadce0b0ca91969f567d /Library
parente2609385de4ff9e735b50fc848f3edc3c5c186b6 (diff)
downloadbrew-09d53f4fc567dfafb6d9c71742f4633762f55d7c.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