fix name in containers file

Signed-off-by: Fahed Dorgaa <fahed.dorgaa@gmail.com>
This commit is contained in:
Fahed Dorgaa 2019-07-14 21:49:07 +02:00
parent 70b00a0fa9
commit abc152d14c

View File

@ -75,7 +75,7 @@ var createCommand = cli.Command{
}
}
if id == "" {
return errdefs.ErrEmptyContainerId
return errdefs.ErrEmptyContainerID
}
client, ctx, cancel, err := commands.NewClient(context)
if err != nil {
@ -214,7 +214,7 @@ var setLabelsCommand = cli.Command{
Action: func(context *cli.Context) error {
containerID, labels := commands.ObjectWithLabelArgs(context)
if containerID == "" {
return errdefs.ErrEmptyContainerId
return errdefs.ErrEmptyContainerID
}
client, ctx, cancel, err := commands.NewClient(context)
if err != nil {
@ -250,7 +250,7 @@ var infoCommand = cli.Command{
Action: func(context *cli.Context) error {
id := context.Args().First()
if id == "" {
return errdefs.ErrEmptyContainerId
return errdefs.ErrEmptyContainerID
}
client, ctx, cancel, err := commands.NewClient(context)
if err != nil {