From 5c08ff58d784bf04d60a102e83a6fb8f7a45567d Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Wed, 27 Feb 2019 14:08:58 -0700 Subject: podman create: disable interspersed opts With the change to cobra, the following command fails: # podman create alpine sh -c /bin/true Error: unknown shorthand flag: 'c' in -c (Correct behavior is to pass '-c' to the container command) This PR corrects that. Signed-off-by: Ed Santiago --- cmd/podman/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/podman/create.go b/cmd/podman/create.go index 2d93c149a..696d10d8e 100644 --- a/cmd/podman/create.go +++ b/cmd/podman/create.go @@ -67,7 +67,7 @@ func init() { getCreateFlags(&createCommand.PodmanCommand) flags := createCommand.Flags() - flags.SetInterspersed(true) + flags.SetInterspersed(false) } -- cgit v1.2.3-54-g00ecf