17 lines
192 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-08-01 02:30:46 +02:00
require "cask/cmd"
2017-03-06 11:39:07 +01:00
module Homebrew
module_function
2020-08-01 02:30:46 +02:00
def cask_args
Cask::Cmd.parser
end
2017-03-06 11:39:07 +01:00
def cask
2020-08-01 02:30:46 +02:00
ARGV.freeze
2018-09-06 08:29:14 +02:00
Cask::Cmd.run(*ARGV)
2017-03-06 11:39:07 +01:00
end
end