diff options
Diffstat (limited to 'cmd/podman/play/play.go')
-rw-r--r-- | cmd/podman/play/play.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cmd/podman/play/play.go b/cmd/podman/play/play.go index b151e5f5d..bc2aa18be 100644 --- a/cmd/podman/play/play.go +++ b/cmd/podman/play/play.go @@ -10,11 +10,10 @@ import ( var ( // Command: podman _play_ playCmd = &cobra.Command{ - Use: "play", - Short: "Play a pod and its containers from a structured file.", - Long: "Play structured data (e.g., Kubernetes pod or service yaml) based on containers and pods.", - TraverseChildren: true, - RunE: validate.SubCommandExists, + Use: "play", + Short: "Play a pod and its containers from a structured file.", + Long: "Play structured data (e.g., Kubernetes pod or service yaml) based on containers and pods.", + RunE: validate.SubCommandExists, } ) |