mirror of
https://github.com/gosticks/brew.git
synced 2026-08-28 12:30:31 +00:00
18 lines
260 B
Ruby
18 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|