aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/update.sh2
-rw-r--r--Library/Homebrew/tap.rb12
2 files changed, 6 insertions, 8 deletions
diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh
index 197a99f2e..77a5c1cd2 100644
--- a/Library/Homebrew/cmd/update.sh
+++ b/Library/Homebrew/cmd/update.sh
@@ -23,7 +23,7 @@ git() {
}
git_init_if_necessary() {
- if [[ -n "$HOMEBREW_MACOS" ]]
+ if [[ -n "$HOMEBREW_MACOS" ]] || [[ -n "$HOMEBREW_FORCE_HOMEBREW_ORG" ]]
then
BREW_OFFICIAL_REMOTE="https://github.com/Homebrew/brew"
CORE_OFFICIAL_REMOTE="https://github.com/Homebrew/homebrew-core"
diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb
index c3af73c7e..e386db7b8 100644
--- a/Library/Homebrew/tap.rb
+++ b/Library/Homebrew/tap.rb
@@ -526,13 +526,11 @@ end
# A specialized {Tap} class for the core formulae
class CoreTap < Tap
- if OS.mac?
- def default_remote
- "https://github.com/Homebrew/homebrew-core"
- end
- else
- def default_remote
- "https://github.com/Linuxbrew/homebrew-core"
+ def default_remote
+ if OS.mac? || ENV["$HOMEBREW_FORCE_HOMEBREW_ORG"]
+ "https://github.com/Homebrew/homebrew-core".freeze
+ else
+ "https://github.com/Linuxbrew/homebrew-core".freeze
end
end