mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

- 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
19 lines
297 B
Ruby
19 lines
297 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cli/parser"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def tap_pin_args
|
|
Homebrew::CLI::Parser.new do
|
|
hide_from_man_page!
|
|
end
|
|
end
|
|
|
|
def tap_pin
|
|
odisabled "brew tap-pin user/tap",
|
|
"fully-scoped user/tap/formula naming"
|
|
end
|
|
end
|