52 lines
1.5 KiB
Ruby
Raw Normal View History

# typed: strict
# frozen_string_literal: true
2019-04-17 18:25:08 +09:00
require "cli/parser"
require "untap"
2018-11-11 18:35:55 +05:30
module Homebrew
2020-10-20 12:03:48 +02:00
sig { returns(CLI::Parser) }
def self.untap_args
2018-11-11 18:35:55 +05:30
Homebrew::CLI::Parser.new do
description <<~EOS
Remove a tapped formula repository.
2018-11-11 18:35:55 +05:30
EOS
2021-02-04 18:36:32 +01:00
switch "-f", "--force",
description: "Untap even if formulae or casks from this tap are currently installed."
2020-07-30 18:40:10 +02:00
2021-01-10 14:26:40 -05:00
named_args :tap, min: 1
2018-11-11 18:35:55 +05:30
end
end
sig { void }
def self.untap
2020-07-30 18:40:10 +02:00
args = untap_args.parse
2018-11-11 18:35:55 +05:30
2021-01-10 14:26:40 -05:00
args.named.to_installed_taps.each do |tap|
odie "Untapping #{tap} is not allowed" if tap.core_tap? && Homebrew::EnvConfig.no_install_from_api?
2018-09-17 02:45:00 +02:00
if Homebrew::EnvConfig.no_install_from_api? || (!tap.core_tap? && !tap.core_cask_tap?)
installed_tap_formulae = Untap.installed_formulae_for(tap:)
installed_tap_casks = Untap.installed_casks_for(tap:)
if installed_tap_formulae.present? || installed_tap_casks.present?
installed_names = (installed_tap_formulae + installed_tap_casks.map(&:token)).join("\n")
if args.force? || Homebrew::EnvConfig.developer?
opoo <<~EOS
Untapping #{tap} even though it contains the following installed formulae or casks:
#{installed_names}
EOS
else
odie <<~EOS
Refusing to untap #{tap} because it contains the following installed formulae or casks:
#{installed_names}
EOS
end
end
end
tap.uninstall manual: true
end
end
2012-03-02 20:28:54 +00:00
end