From f643b84dc48bdbb67fd1d6e2bc3fe1367047f96d Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Sun, 3 Nov 2013 18:51:22 -0800 Subject: Doctor: fix check_access_logs Fixes Homebrew/homebrew#23936. --- Library/Homebrew/cmd/doctor.rb | 4 ++-- 1 file 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 -- cgit v1.2.3 'submit' value='switch'/> 🍺 The missing package manager for macOS
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/leaves.rb
blob: ecebedbb3503117f8c1acf9ea533e1c233ed7048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24