From cb049409e53f501b1b863583e7316e786f99749c Mon Sep 17 00:00:00 2001 From: Max Howell Date: Tue, 2 Aug 2011 14:44:09 +0100 Subject: Fix `brew doctor` if sbin directory doesn't exist --- Library/Homebrew/cmd/doctor.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index dca685904..03eec12a8 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -353,7 +353,8 @@ def check_user_path end # Don't complain about sbin not being in the path if it doesn't exist - if (HOMEBREW_PREFIX+'sbin').children.length > 0 + sbin = (HOMEBREW_PREFIX+'sbin') + if sbin.directory? and sbin.children.length > 0 unless seen_prefix_sbin puts <<-EOS.undent Some brews install binaries to sbin instead of bin, but Homebrew's -- cgit v1.2.3