brew/Library/Homebrew/cmd/tap-unpin.rb
Mike McQuaid 176297d361
Handle 2.2.0 deprecations/disableds
- Make all `odeprecated` from 2.1.0 `odisabled` instead
- Remove dead code that won't be run now
- Remove (unused) `or_later` handling for bottles
2019-11-06 15:25:40 +00:00

19 lines
301 B
Ruby

# frozen_string_literal: true
require "cli/parser"
module Homebrew
module_function
def tap_unpin_args
Homebrew::CLI::Parser.new do
hide_from_man_page!
end
end
def tap_unpin
odisabled "brew tap-pin user/tap",
"fully-scoped user/tap/formula naming"
end
end