mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-02-16 17:42:20 +00:00
Correct typo in info command
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
5371ff039b
commit
9ea214d0b3
@ -35,13 +35,13 @@ func NewCommand(logger *logrus.Logger) *cli.Command {
|
|||||||
|
|
||||||
// build
|
// build
|
||||||
func (m command) build() *cli.Command {
|
func (m command) build() *cli.Command {
|
||||||
// Create the 'hook' command
|
// Create the 'info' command
|
||||||
hook := cli.Command{
|
info := cli.Command{
|
||||||
Name: "info",
|
Name: "info",
|
||||||
Usage: "Provide information about the system",
|
Usage: "Provide information about the system",
|
||||||
}
|
}
|
||||||
|
|
||||||
hook.Subcommands = []*cli.Command{}
|
info.Subcommands = []*cli.Command{}
|
||||||
|
|
||||||
return &hook
|
return &info
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user