Remove empty directories during uninstall

About time we did this right?
This commit is contained in:
Max Howell 2012-02-29 01:23:37 +00:00
parent 6fe29922c8
commit 11953cbcb9

View File

@ -35,6 +35,7 @@ class Keg < Pathname
next unless dst.symlink?
dst.uninstall_info if dst.to_s =~ INFOFILE_RX and ENV['HOMEBREW_KEEP_INFO']
dst.unlink
dst.parent.rmdir_if_possible
n+=1
Find.prune if src.directory?
end