mirror of https://github.com/containers/podman.git
Fix typo in label field option
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #203 Approved by: rhatdan
This commit is contained in:
parent
245a338f5a
commit
514bf4a813
|
|
@ -491,7 +491,7 @@ func parseCreateOpts(c *cli.Context, runtime *libpod.Runtime) (*createConfig, er
|
||||||
}
|
}
|
||||||
|
|
||||||
// LABEL VARIABLES
|
// 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 {
|
if err != nil {
|
||||||
return nil, errors.Wrapf(err, "unable to process labels")
|
return nil, errors.Wrapf(err, "unable to process labels")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue