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-10-07 11:16:03 +01:00
|
|
|
@full_name = "Homebrew/linuxbrew-core" if HOMEBREW_CORE_DEFAULT_GIT_REMOTE.include?("Homebrew/linuxbrew-core")
|
2018-10-02 15:43:16 -07:00
|
|
|
end
|
|
|
|
end
|