Fix missing newline from stdout of create-container command

Signed-off-by: Ed Baunton <edbaunton@gmail.com>
This commit is contained in:
Ed Baunton 2024-02-16 05:23:28 -05:00
parent 8a099ece35
commit 86946837a9
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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
}