
check_coretap_git_origin was not working as intended. Permit Linuxbrew/homebrew-core as a valid origin. Factor out check_coretap_git_branch.
8 lines
179 B
Ruby
8 lines
179 B
Ruby
class CoreTap < Tap
|
|
# @private
|
|
def initialize
|
|
super "Homebrew", "core"
|
|
@full_name = "Linuxbrew/homebrew-core" unless ENV["HOMEBREW_FORCE_HOMEBREW_ON_LINUX"]
|
|
end
|
|
end
|