summaryrefslogtreecommitdiff
path: root/cmd/podman/wait.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/wait.go')
-rw-r--r--cmd/podman/wait.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/wait.go b/cmd/podman/wait.go
index 929b66761..e919ab3ca 100644
--- a/cmd/podman/wait.go
+++ b/cmd/podman/wait.go
@@ -17,12 +17,13 @@ var (
`
waitFlags = []cli.Flag{LatestFlag}
waitCommand = cli.Command{
- Name: "wait",
- Usage: "Block on one or more containers",
- Description: waitDescription,
- Flags: waitFlags,
- Action: waitCmd,
- ArgsUsage: "CONTAINER-NAME [CONTAINER-NAME ...]",
+ Name: "wait",
+ Usage: "Block on one or more containers",
+ Description: waitDescription,
+ Flags: waitFlags,
+ Action: waitCmd,
+ ArgsUsage: "CONTAINER-NAME [CONTAINER-NAME ...]",
+ OnUsageError: usageErrorHandler,
}
)