diff options
| author | Jack Nagel | 2014-10-13 23:13:00 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-10-13 23:13:00 -0500 |
| commit | d5b561e681a8c2dc5b50d7c1f9c3a9a0caa2fddc (patch) | |
| tree | 2f6e055f9a1535fbcfbdb64e50497055c3d5be2c /Library | |
| parent | 40c759185cc58cd895ae4efb262dcf409a7f30c5 (diff) | |
| download | homebrew-d5b561e681a8c2dc5b50d7c1f9c3a9a0caa2fddc.tar.bz2 | |
Remove audit whitelist
This is currently unnecessary.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 7 |
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 |
