From 92faeb79b23c8acdfc73cce0e50e5462865cad88 Mon Sep 17 00:00:00 2001 From: Jonathan Grochowski <jongrocho@gmail.com> Date: Sun, 20 Nov 2011 01:53:52 -0800 Subject: [PATCH] Delete temp directory created during brew doctor Running brew doctor creates a temporary directory in $HOMEBREW_TEMP or /tmp but does not clean it up afterwards. This patch deletes the directory created to prevent polluting $HOMEBREW_TEMP or /tmp with empty directories. Signed-off-by: Adam Vandenberg <flangy@gmail.com> --- Library/Homebrew/cmd/doctor.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 0de6508cac..3924960ecf 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -550,6 +550,8 @@ def check_for_multiple_volumes where_cellar = volumes.which real_cellar where_temp = volumes.which real_temp + Dir.delete tmp + unless where_cellar == where_temp puts <<-EOS.undent Your Cellar & TEMP folders are on different volumes. -- GitLab