brew/Library/Homebrew/cmd/tap-pin.rb

36 lines
706 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-04-17 18:25:08 +09:00
require "cli/parser"
2018-11-10 22:54:32 +05:30
2015-08-09 22:42:46 +08:00
module Homebrew
2016-09-26 01:44:51 +02:00
module_function
2018-11-10 22:54:32 +05:30
def tap_pin_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`tap-pin` <tap>
Pin <tap>, prioritising its formulae over core when formula names are supplied
2018-11-10 22:54:32 +05:30
by the user. See also `tap-unpin`.
EOS
switch :debug
hide_from_man_page!
2018-11-10 22:54:32 +05:30
end
end
2015-08-09 22:42:46 +08:00
def tap_pin
odeprecated "brew tap-pin user/tap",
2019-04-30 08:44:35 +01:00
"fully-scoped user/tap/formula naming"
2018-11-10 22:54:32 +05:30
tap_pin_args.parse
2015-08-25 17:13:37 +02:00
ARGV.named.each do |name|
tap = Tap.fetch(name)
raise "pinning #{tap} is not allowed" if tap.core_tap?
2018-09-17 02:45:00 +02:00
2015-08-09 22:42:46 +08:00
tap.pin
ohai "Pinned #{tap}"
2015-08-09 22:42:46 +08:00
end
end
end