From 75642e6271205d8c3ac9436e67cb4d6ffc0f32de Mon Sep 17 00:00:00 2001
From: Jack Nagel <jacknagel@gmail.com>
Date: Tue, 23 Jun 2015 23:18:56 -0400
Subject: [PATCH] Use Dir.mktmpdir in doctor

This matches how we create temporary directories elsewhere.
---
 Library/Homebrew/cmd/doctor.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 9c95c0f7fe..09a4e7bb28 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -809,7 +809,7 @@ def check_for_multiple_volumes
   # Find the volumes for the TMP folder & HOMEBREW_CELLAR
   real_cellar = HOMEBREW_CELLAR.realpath
 
-  tmp = Pathname.new with_system_path { `mktemp -d #{HOMEBREW_TEMP}/homebrew-brew-doctor-XXXXXX` }.strip
+  tmp = Pathname.new(Dir.mktmpdir("doctor", HOMEBREW_TEMP))
   real_temp = tmp.realpath.parent
 
   where_cellar = volumes.which real_cellar
-- 
GitLab