diff options
| author | ilovezfs | 2016-02-21 00:24:36 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2016-02-21 17:34:17 +0000 |
| commit | e6501c3768b9f5506374575740efcd47e8d09425 (patch) | |
| tree | 949adbcfedecef2d0d4784107c89322645f51808 /Library | |
| parent | 18b20c9eaf940692cdd9edbe034bdafe58948df8 (diff) | |
| download | brew-e6501c3768b9f5506374575740efcd47e8d09425.tar.bz2 | |
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>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/config.rb b/Library/Homebrew/config.rb index 63a703168..6da8c481e 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 |
