Use HOMEBREW_LOGS more consistently.

This commit is contained in:
Mike McQuaid 2013-10-31 16:58:55 -07:00
parent 80c7a80a46
commit 37e2005e79
2 changed files with 2 additions and 3 deletions

View File

@ -381,8 +381,7 @@ end
end
def check_access_logs
folder = Pathname.new('~/Library/Logs/Homebrew')
if folder.exist? and not folder.writable_real?
if HOMEBREW_LOGS.exist? and not HOMEBREW_LOGS.writable_real?
<<-EOS.undent
#{folder} isn't writable.
This can happen if you "sudo make install" software that isn't managed

View File

@ -200,7 +200,7 @@ class BuildError < Homebrew::InstallationError
Homebrew.dump_build_env(env)
puts
onoe "#{formula.name} did not build"
unless (logs = Dir["#{ENV['HOME']}/Library/Logs/Homebrew/#{formula}/*"]).empty?
unless (logs = Dir["#{HOMEBREW_LOGS}/#{formula}/*"]).empty?
puts "Logs:"
puts logs.map{|fn| " #{fn}"}.join("\n")
end