diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-16 06:25:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-16 06:25:41 -0700 |
commit | 713839cf8393bdb96c739cb745e403cf2a3a1327 (patch) | |
tree | 5ae1609e0372f6cd4d1b87df93fa0358c47900eb /cmd/podman/run.go | |
parent | c1e2b583c82261639d6927c9b2a4f19d87a166a7 (diff) | |
parent | 6fb0a706af438778dd372d4b05b417fb30a45965 (diff) | |
download | podman-713839cf8393bdb96c739cb745e403cf2a3a1327.tar.gz podman-713839cf8393bdb96c739cb745e403cf2a3a1327.tar.bz2 podman-713839cf8393bdb96c739cb745e403cf2a3a1327.zip |
Merge pull request #2946 from baude/segs
Fix segfaults attribute to missing options
Diffstat (limited to 'cmd/podman/run.go')
-rw-r--r-- | cmd/podman/run.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/run.go b/cmd/podman/run.go index d3158de6b..717a36e04 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -19,6 +19,7 @@ var ( RunE: func(cmd *cobra.Command, args []string) error { runCommand.InputArgs = args runCommand.GlobalFlags = MainGlobalOpts + runCommand.Remote = remoteclient return runCmd(&runCommand) }, Example: `podman run imageID ls -alF /etc |