mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
16 lines
229 B
Ruby
16 lines
229 B
Ruby
![]() |
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
|