brew/Library/Homebrew/bundle/tap_installer.rb

47 lines
1.2 KiB
Ruby
Raw Normal View History

# typed: true # rubocop:todo Sorbet/StrictSigil
# frozen_string_literal: true
module Homebrew
module Bundle
module TapInstaller
module_function
def preinstall(name, verbose: false, **_options)
if installed_taps.include? name
puts "Skipping install of #{name} tap. It is already installed." if verbose
return false
end
true
end
def install(name, preinstall: true, verbose: false, force: false, **options)
return true unless preinstall
puts "Installing #{name} tap. It is not currently installed." if verbose
args = []
args << "--force" if force
args.append("--force-auto-update") if options[:force_auto_update]
success = if options[:clone_target]
Bundle.brew("tap", name, options[:clone_target], *args, verbose:)
else
Bundle.brew("tap", name, *args, verbose:)
end
unless success
Homebrew::Bundle::Skipper.tap_failed!(name)
return false
end
installed_taps << name
true
end
def installed_taps
@installed_taps ||= Homebrew::Bundle::TapDumper.tap_names
end
end
end
end