Fix missing command method.

This commit is contained in:
Markus Reiter 2019-10-15 17:39:15 +02:00
parent f762033a57
commit 40a0b8b10a

View File

@ -214,7 +214,7 @@ module Cask
@args = args @args = args
end end
def run(*_args) def run(*)
purpose purpose
usage usage
@ -226,7 +226,7 @@ module Cask
raise ArgumentError, "help does not take arguments." if @args.length raise ArgumentError, "help does not take arguments." if @args.length
end end
raise ArgumentError, "Unknown Cask command: #{command}" raise ArgumentError, "Unknown Cask command: #{@command}"
end end
def purpose def purpose