2020-10-10 14:16:11 +02:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-02 15:43:16 -07:00
|
|
|
class CoreTap < Tap
|
2019-01-24 22:51:33 -08:00
|
|
|
# @private
|
|
|
|
def initialize
|
|
|
|
super "Homebrew", "core"
|
2021-08-29 21:40:35 +02:00
|
|
|
@full_name = "Homebrew/linuxbrew-core" if
|
|
|
|
!Homebrew::EnvConfig.force_homebrew_on_linux? &&
|
|
|
|
!Homebrew::EnvConfig.force_homebrew_core_repo_on_linux?
|
2018-10-02 15:43:16 -07:00
|
|
|
end
|
|
|
|
end
|