mirror of https://github.com/hashicorp/terraform
This is just a husk of a container command that has no nested commands under it, so it isn't serving any purpose.pull/26709/head
parent
8eed942482
commit
39504ede05
@ -1,30 +0,0 @@
|
||||
package command
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/mitchellh/cli"
|
||||
)
|
||||
|
||||
// DebugCommand is a Command implementation that just shows help for
|
||||
// the subcommands nested below it.
|
||||
type DebugCommand struct {
|
||||
Meta
|
||||
}
|
||||
|
||||
func (c *DebugCommand) Run(args []string) int {
|
||||
return cli.RunResultHelp
|
||||
}
|
||||
|
||||
func (c *DebugCommand) Help() string {
|
||||
helpText := `
|
||||
Usage: terraform debug <subcommand> [options] [args]
|
||||
|
||||
This command has subcommands for debug output management
|
||||
`
|
||||
return strings.TrimSpace(helpText)
|
||||
}
|
||||
|
||||
func (c *DebugCommand) Synopsis() string {
|
||||
return "Debug output management (experimental)"
|
||||
}
|
||||
Loading…
Reference in new issue