We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f27a42 commit e6ddffcCopy full SHA for e6ddffc
1 file changed
cmd/ctr/commands/tasks/exec.go
@@ -31,7 +31,6 @@ import (
31
"github.com/urfave/cli"
32
)
33
34
-//TODO:(jessvalarezo) exec-id is optional here, update to required arg
35
var execCommand = cli.Command{
36
Name: "exec",
37
Usage: "execute additional processes in an existing container",
@@ -51,8 +50,9 @@ var execCommand = cli.Command{
51
50
Usage: "detach from the task after it has started execution",
52
},
53
cli.StringFlag{
54
- Name: "exec-id",
55
- Usage: "exec specific id for the process",
+ Name: "exec-id",
+ Required: true,
+ Usage: "exec specific id for the process",
56
57
58
Name: "fifo-dir",
0 commit comments