mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

This serves a similar purpose to the HOMEBREW_FORCE_HOMEBREW_ORG variable but applies to more settings.
8 lines
159 B
Ruby
8 lines
159 B
Ruby
module Homebrew
|
|
DEFAULT_PREFIX = if ENV["HOMEBREW_FORCE_HOMEBREW_ON_LINUX"]
|
|
"/usr/local".freeze
|
|
else
|
|
"/home/linuxbrew/.linuxbrew".freeze
|
|
end
|
|
end
|