aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/list.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd/list.rb')
-rw-r--r--Library/Homebrew/cmd/list.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/Library/Homebrew/cmd/list.rb b/Library/Homebrew/cmd/list.rb
index 3496580f4..7bbcb4799 100644
--- a/Library/Homebrew/cmd/list.rb
+++ b/Library/Homebrew/cmd/list.rb
@@ -146,7 +146,7 @@ class PrettyListing
(pnn.extname == ".dylib" || pnn.extname == ".pc") && !pnn.symlink?
end
when ".brew"
- # Ignore .brew
+ next # Ignore .brew
else
if pn.directory?
if pn.symlink?
@@ -187,12 +187,9 @@ class PrettyListing
end
def print_remaining_files(files, root, other = "")
- case files.length
- when 0
- # noop
- when 1
+ if files.length == 1
puts files
- else
+ elsif files.length > 1
puts "#{root}/ (#{files.length} #{other}files)"
end
end