brew/Library/Homebrew/cmd/tap-unpin.rb
2018-09-17 03:45:59 +02:00

17 lines
343 B
Ruby

#: * `tap-unpin` <tap>:
#: Unpin <tap> so its formulae are no longer prioritized. See also `tap-pin`.
module Homebrew
module_function
def tap_unpin
ARGV.named.each do |name|
tap = Tap.fetch(name)
raise "unpinning #{tap} is not allowed" if tap.core_tap?
tap.unpin
ohai "Unpinned #{tap}"
end
end
end