From e6501c3768b9f5506374575740efcd47e8d09425 Mon Sep 17 00:00:00 2001 From: ilovezfs <ilovezfs@icloud.com> Date: Sun, 21 Feb 2016 00:24:36 -0800 Subject: [PATCH] HOMEBREW_LIBRARY_PATH: remove redundant /Homebrew The default HOMEBREW_LIBRARY_PATH should be /usr/local/Library/Homebrew not /usr/local/Library/Homebrew/Homebrew Closes Homebrew/homebrew#49384. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> --- Library/Homebrew/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/config.rb b/Library/Homebrew/config.rb index 63a7031687..6da8c481ee 100644 --- a/Library/Homebrew/config.rb +++ b/Library/Homebrew/config.rb @@ -50,7 +50,7 @@ HOMEBREW_LOGS = Pathname.new(ENV["HOMEBREW_LOGS"] || "~/Library/Logs/Homebrew/") HOMEBREW_TEMP = Pathname.new(ENV.fetch("HOMEBREW_TEMP", "/tmp")) unless defined? HOMEBREW_LIBRARY_PATH - HOMEBREW_LIBRARY_PATH = Pathname.new(__FILE__).realpath.parent.join("Homebrew") + HOMEBREW_LIBRARY_PATH = Pathname.new(__FILE__).realpath.parent end HOMEBREW_LOAD_PATH = HOMEBREW_LIBRARY_PATH -- GitLab