From 635cb27d133d38bf2c8c433783ba2b8eb1f3aeb6 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Tue, 8 Dec 2009 19:54:52 +0000 Subject: [PATCH] Unlink before uninstalling Nice bug there where we never removed any symlinks, because the unlink step requires the keg to be full of files to determine what symlinks to remove. --- bin/brew | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/brew b/bin/brew index 3bb11b385c..03acffbc63 100755 --- a/bin/brew +++ b/bin/brew @@ -161,8 +161,8 @@ begin when 'rm', 'uninstall', 'remove' ARGV.kegs.each do |keg| puts "Uninstalling #{keg}..." - keg.uninstall keg.unlink + keg.uninstall end when 'prune'