Revert "Default HOMEBREW_TEMP to Dir.tmpdir"

This reverts commit b95f27ce9f956c56d080b6dc29ba8efb841c6690.
This commit is contained in:
Jack Nagel 2015-05-03 10:46:23 -04:00
parent c5243b0e5c
commit 04ac482809

View File

@ -49,7 +49,7 @@ end
HOMEBREW_LOGS = Pathname.new(ENV['HOMEBREW_LOGS'] || '~/Library/Logs/Homebrew/').expand_path
HOMEBREW_TEMP = Pathname.new(ENV["HOMEBREW_TEMP"] || Dir.tmpdir)
HOMEBREW_TEMP = Pathname.new(ENV.fetch('HOMEBREW_TEMP', '/tmp'))
if not defined? HOMEBREW_LIBRARY_PATH
HOMEBREW_LIBRARY_PATH = Pathname.new(__FILE__).realpath.parent.join("Homebrew")