mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
19 lines
384 B
Ruby
19 lines
384 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require 'optparse'
|
|
|
|
module VagrantPlugins
|
|
module CommandHelp
|
|
class Command < Vagrant.plugin("2", :command)
|
|
def self.synopsis
|
|
"shows the help for a subcommand"
|
|
end
|
|
|
|
def execute
|
|
return @env.cli([]) if @argv.empty?
|
|
@env.cli([@argv[0], "-h"])
|
|
end
|
|
end
|
|
end
|
|
end
|