keep the uppercase letter for flag info

Signed-off-by: yulng <wei.yang@daocloud.io>
This commit is contained in:
yulng
2023-01-19 17:40:45 +08:00
parent 94934e1a47
commit 757b8f702b
43 changed files with 217 additions and 217 deletions

View File

@@ -39,32 +39,32 @@ var execCommand = cli.Command{
Flags: []cli.Flag{
cli.StringFlag{
Name: "cwd",
Usage: "working directory of the new process",
Usage: "Working directory of the new process",
},
cli.BoolFlag{
Name: "tty,t",
Usage: "allocate a TTY for the container",
Usage: "Allocate a TTY for the container",
},
cli.BoolFlag{
Name: "detach,d",
Usage: "detach from the task after it has started execution",
Usage: "Detach from the task after it has started execution",
},
cli.StringFlag{
Name: "exec-id",
Required: true,
Usage: "exec specific id for the process",
Usage: "Exec specific id for the process",
},
cli.StringFlag{
Name: "fifo-dir",
Usage: "directory used for storing IO FIFOs",
Usage: "Directory used for storing IO FIFOs",
},
cli.StringFlag{
Name: "log-uri",
Usage: "log uri for custom shim logging",
Usage: "Log uri for custom shim logging",
},
cli.StringFlag{
Name: "user",
Usage: "user id or name",
Usage: "User id or name",
},
},
Action: func(context *cli.Context) error {