summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-01-09 16:55:30 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-01-10 12:08:58 +0000
commit514bf4a8131f1fe8b6ce2909cec8cabf9094e6f6 (patch)
treee5651a1b37bc9fbb13c5edcb0528b826fc3679c2
parent245a338f5a6519f5729749be646abbefd12701d8 (diff)
downloadpodman-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
-rw-r--r--cmd/podman/create.go2
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")
}