From 2130cb8c86450f0a3751293ca6283a6f05c9487f Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sat, 17 Oct 2015 03:59:28 +0800 Subject: [PATCH] uninstall: fix indent --- Library/Homebrew/cmd/uninstall.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/cmd/uninstall.rb b/Library/Homebrew/cmd/uninstall.rb index f1d0ea6360..23e68781e6 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