Fix missing newline from stdout of create-container command
Signed-off-by: Ed Baunton <edbaunton@gmail.com>
This commit is contained in:
parent
8a099ece35
commit
86946837a9
|
|
@ -230,7 +230,7 @@ func createContainer(flags *mflag.FlagSet, action string, m storage.Store, args
|
|||
}
|
||||
fmt.Printf("%s\n", container.ID)
|
||||
for _, name := range container.Names {
|
||||
fmt.Printf("\t%s", name)
|
||||
fmt.Printf("\t%s\n", name)
|
||||
}
|
||||
return 0, nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue