aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/doctor.rb
diff options
context:
space:
mode:
authorMisty De Meo2013-11-03 18:51:22 -0800
committerMisty De Meo2013-11-03 18:51:22 -0800
commit511f9d38d1b22955e1a977252f7dee64fbcfeedc (patch)
treebdb8d6feb6590f6001be8a6d9e23aa9c624c3c07 /Library/Homebrew/cmd/doctor.rb
parent2cdb430bbadbdec84592db3f4dceffd49ccea019 (diff)
downloadhomebrew-511f9d38d1b22955e1a977252f7dee64fbcfeedc.tar.bz2
Doctor: fix check_access_logs
Fixes #23936.
Diffstat (limited to 'Library/Homebrew/cmd/doctor.rb')
-rw-r--r--Library/Homebrew/cmd/doctor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 877b7880e..61d029d35 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -383,13 +383,13 @@ end
def check_access_logs
if HOMEBREW_LOGS.exist? and not HOMEBREW_LOGS.writable_real?
<<-EOS.undent
- #{folder} isn't writable.
+ #{HOMEBREW_LOGS} isn't writable.
This can happen if you "sudo make install" software that isn't managed
by Homebrew.
Homebrew writes debugging logs to this location.
- You should probably `chown` #{folder}
+ You should probably `chown` #{HOMEBREW_LOGS}
EOS
end
end