mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
8 lines
177 B
Ruby
8 lines
177 B
Ruby
![]() |
require "pathname"
|
||
|
|
||
|
HOMEBREW_LIBRARY_PATH = Pathname(__dir__).realpath
|
||
|
|
||
|
unless $LOAD_PATH.include?(HOMEBREW_LIBRARY_PATH.to_s)
|
||
|
$LOAD_PATH.push(HOMEBREW_LIBRARY_PATH.to_s)
|
||
|
end
|