check for a valid $TMPDIR path in brew doctor
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
55791d4c10
commit
a10aa12f29
@ -725,6 +725,14 @@ def check_for_other_frameworks
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def check_tmpdir
|
||||||
|
tmpdir = ENV['TMPDIR']
|
||||||
|
if !File.directory?(tmpdir)
|
||||||
|
puts "$TMPDIR #{tmpdir.inspect} doesn't exist."
|
||||||
|
puts
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
module Homebrew extend self
|
module Homebrew extend self
|
||||||
def doctor
|
def doctor
|
||||||
old_stdout = $stdout
|
old_stdout = $stdout
|
||||||
@ -765,6 +773,7 @@ module Homebrew extend self
|
|||||||
check_for_autoconf
|
check_for_autoconf
|
||||||
check_for_linked_kegonly_brews
|
check_for_linked_kegonly_brews
|
||||||
check_for_other_frameworks
|
check_for_other_frameworks
|
||||||
|
check_tmpdir
|
||||||
ensure
|
ensure
|
||||||
$stdout = old_stdout
|
$stdout = old_stdout
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user