diff options
| author | Jack Nagel | 2012-05-07 17:50:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-05-07 17:50:05 -0500 |
| commit | 839d0ddad8a8c89e5834a9f5326203c98c10714b (patch) | |
| tree | ea912ec75ada3e520e7ac11c1dc12b5a85cde7cf | |
| parent | 2d68a3f319421349a9acc3dc9bc34568a6eccd7a (diff) | |
| download | homebrew-839d0ddad8a8c89e5834a9f5326203c98c10714b.tar.bz2 | |
audit: don't count printed URLs as problems
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rwxr-xr-x | Library/Homebrew/cmd/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 8157de70f..346226ca9 100755 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -413,7 +413,7 @@ module Homebrew extend self puts problems * "\n" puts brew_count += 1 - problem_count += problems.size + problem_count += problems.select{ |p| p.start_with? ' *' }.size end end |
