diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-01-09 16:55:30 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-10 12:08:58 +0000 |
commit | 514bf4a8131f1fe8b6ce2909cec8cabf9094e6f6 (patch) | |
tree | e5651a1b37bc9fbb13c5edcb0528b826fc3679c2 /cmd | |
parent | 245a338f5a6519f5729749be646abbefd12701d8 (diff) | |
download | podman-514bf4a8131f1fe8b6ce2909cec8cabf9094e6f6.tar.gz podman-514bf4a8131f1fe8b6ce2909cec8cabf9094e6f6.tar.bz2 podman-514bf4a8131f1fe8b6ce2909cec8cabf9094e6f6.zip |
Fix typo in label field option
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #203
Approved by: rhatdan
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/create.go b/cmd/podman/create.go index 0ddf59ce0..bb9a31467 100644 --- a/cmd/podman/create.go +++ b/cmd/podman/create.go @@ -491,7 +491,7 @@ func parseCreateOpts(c *cli.Context, runtime *libpod.Runtime) (*createConfig, er } // LABEL VARIABLES - labels, err := getAllLabels(c.StringSlice("label-file"), c.StringSlice("labels")) + labels, err := getAllLabels(c.StringSlice("label-file"), c.StringSlice("label")) if err != nil { return nil, errors.Wrapf(err, "unable to process labels") } |