Files
brew/Library/Homebrew/compat/cli/parser.rb
T

21 lines
292 B
Ruby

# typed: true
# frozen_string_literal: true
require "compat/global"
module Homebrew
module CLI
class Parser
module Compat
def parse(*)
args = super
Homebrew.args = args.dup
args
end
end
prepend Compat
end
end
end