vagrant/plugins/commands/help/command.rb

20 lines
384 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
2013-07-18 12:11:36 -04:00
require 'optparse'
module VagrantPlugins
module CommandHelp
class Command < Vagrant.plugin("2", :command)
def self.synopsis
"shows the help for a subcommand"
end
2013-07-18 12:11:36 -04:00
def execute
return @env.cli([]) if @argv.empty?
@env.cli([@argv[0], "-h"])
end
end
end
end