aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Homebrew/cmd/cleanup.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/cleanup.rb b/Library/Homebrew/cmd/cleanup.rb
index c9bc2cb12..b4d9658d7 100644
--- a/Library/Homebrew/cmd/cleanup.rb
+++ b/Library/Homebrew/cmd/cleanup.rb
@@ -67,9 +67,9 @@ module Homebrew
if keg.linked?
opoo "Skipping (old) #{keg} due to it being linked"
elsif ARGV.dry_run?
- puts "Would remove: #{keg}"
+ puts "Would remove: #{keg} (#{keg.abv})"
else
- puts "Removing: #{keg}..."
+ puts "Removing: #{keg}... (#{keg.abv})"
keg.uninstall
end
end
@@ -94,9 +94,9 @@ module Homebrew
def cleanup_cached_file file
if ARGV.dry_run?
- puts "Would remove: #{file}"
+ puts "Would remove: #{file} (#{file.abv})"
else
- puts "Removing: #{file}..."
+ puts "Removing: #{file}... (#{file.abv})"
file.unlink
end
end