Skip to content
Snippets Groups Projects
Unverified Commit e8a4aad5 authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #3939 from MikeMcQuaid/linuxbrew-core-not-yet

Don't use Linuxbrew/homebrew-core (yet, at least).
parents 6c7e8608 70a9a674
No related branches found
No related tags found
No related merge requests found
......@@ -23,15 +23,8 @@ git() {
}
git_init_if_necessary() {
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"
elif [[ -n "$HOMEBREW_LINUX" ]]
then
BREW_OFFICIAL_REMOTE="https://github.com/Linuxbrew/brew"
CORE_OFFICIAL_REMOTE="https://github.com/Linuxbrew/homebrew-core"
fi
BREW_OFFICIAL_REMOTE="https://github.com/Homebrew/brew"
CORE_OFFICIAL_REMOTE="https://github.com/Homebrew/homebrew-core"
safe_cd "$HOMEBREW_REPOSITORY"
if [[ ! -d ".git" ]]
......
......@@ -543,11 +543,7 @@ end
# A specialized {Tap} class for the core formulae
class CoreTap < Tap
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
"https://github.com/Homebrew/homebrew-core".freeze
end
# @private
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment