aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/uninstall.rb
diff options
context:
space:
mode:
authorXu Cheng2015-10-17 03:59:28 +0800
committerXu Cheng2015-10-17 03:59:28 +0800
commit2130cb8c86450f0a3751293ca6283a6f05c9487f (patch)
tree1699bff3766d3095cc5a920df9cb73cf3a409c91 /Library/Homebrew/cmd/uninstall.rb
parentdee4c76e6257a71672e259c0ae1e3e5c62b86e78 (diff)
downloadbrew-2130cb8c86450f0a3751293ca6283a6f05c9487f.tar.bz2
uninstall: fix indent
Diffstat (limited to 'Library/Homebrew/cmd/uninstall.rb')
-rw-r--r--Library/Homebrew/cmd/uninstall.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/uninstall.rb b/Library/Homebrew/cmd/uninstall.rb
index f1d0ea636..23e68781e 100644
--- a/Library/Homebrew/cmd/uninstall.rb
+++ b/Library/Homebrew/cmd/uninstall.rb
@@ -47,9 +47,9 @@ module Homebrew
# If we delete Cellar/newname, then Cellar/oldname symlink
# can become broken and we have to remove it.
if HOMEBREW_CELLAR.directory?
- HOMEBREW_CELLAR.children.each do |rack|
- rack.unlink if rack.symlink? && !rack.resolved_path_exists?
- end
+ HOMEBREW_CELLAR.children.each do |rack|
+ rack.unlink if rack.symlink? && !rack.resolved_path_exists?
+ end
end
end