mirror of
https://github.com/containers/podman.git
synced 2025-09-12 18:09:45 +08:00

Currently in podman if a user specifies a command that does not exist the tool shows the help information. This patch changes it to show information like: $ ./bin/podman foobar Error: unrecognized command 'podman foobar' Try 'podman --help' for more information. $ ./bin/podman volume foobar Error: unrecognized command `podman volume foobar` Try 'podman volume --help' for more information. $ ./bin/podman container foobar Error: unrecognized command `podman container foobar` Try 'podman container --help' for more information. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
24 lines
564 B
Go
24 lines
564 B
Go
package main
|
|
|
|
import (
|
|
"github.com/containers/libpod/cmd/podman/cliconfig"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
generateCommand cliconfig.PodmanCommand
|
|
generateDescription = "Generate structured data based for a containers and pods"
|
|
_generateCommand = &cobra.Command{
|
|
Use: "generate",
|
|
Short: "Generated structured data",
|
|
Long: generateDescription,
|
|
RunE: commandRunE(),
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
generateCommand.Command = _generateCommand
|
|
generateCommand.AddCommand(getGenerateSubCommands()...)
|
|
generateCommand.SetUsageTemplate(UsageTemplate())
|
|
}
|