16 lines
229 B
Ruby
Raw Normal View History

require "ostruct"
module Homebrew
module CLI
class Args < OpenStruct
# undefine tap to allow --tap argument
undef tap
def initialize(argv:)
super
@argv = argv
end
end
end
end