aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/uninstall.rb
diff options
context:
space:
mode:
authorXu Cheng2015-04-09 15:18:25 +0800
committerXu Cheng2015-04-09 15:25:22 +0800
commitcd00abab5591c715a6108d08375fa7f1e2f84101 (patch)
treec7c73b47e467b3070ee7b630124d0536f63bc9ea /Library/Homebrew/cmd/uninstall.rb
parent8d94fff17a098613adce5fbf8c4c4c06f300f25f (diff)
downloadbrew-cd00abab5591c715a6108d08375fa7f1e2f84101.tar.bz2
uninstall: display file size
Closes Homebrew/homebrew#38475. Signed-off-by: Xu Cheng <xucheng@me.com>
Diffstat (limited to 'Library/Homebrew/cmd/uninstall.rb')
-rw-r--r--Library/Homebrew/cmd/uninstall.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/uninstall.rb b/Library/Homebrew/cmd/uninstall.rb
index 7c085e1a5..f6a4cd684 100644
--- a/Library/Homebrew/cmd/uninstall.rb
+++ b/Library/Homebrew/cmd/uninstall.rb
@@ -8,7 +8,7 @@ module Homebrew
if not ARGV.force?
ARGV.kegs.each do |keg|
keg.lock do
- puts "Uninstalling #{keg}..."
+ puts "Uninstalling #{keg}... (#{keg.abv})"
keg.unlink
keg.uninstall
rm_pin keg.name
@@ -28,7 +28,7 @@ module Homebrew
rack = HOMEBREW_CELLAR/name
if rack.directory?
- puts "Uninstalling #{name}..."
+ puts "Uninstalling #{name}... (#{rack.abv})"
rack.subdirs.each do |d|
keg = Keg.new(d)
keg.unlink