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

19 lines
351 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-04-17 18:25:08 +09:00
require "cli/parser"
2015-08-09 22:42:46 +08:00
module Homebrew
2016-09-26 01:44:51 +02:00
module_function
def tap_unpin_args
Homebrew::CLI::Parser.new do
hide_from_man_page!
end
end
2015-08-09 22:42:46 +08:00
def tap_unpin
odisabled "the brew tap-unpin command",
"fully-scoped user/tap/formula naming when installing and in dependency references"
2015-08-09 22:42:46 +08:00
end
end