Skip to content

Commit

Permalink
Merge pull request containers#1834 from edbaunton/fix-newline-createc…
Browse files Browse the repository at this point in the history
…ontainer

Fix missing newline from stdout of create-container command
  • Loading branch information
openshift-merge-bot[bot] authored Feb 16, 2024
2 parents 875fc46 + 8694683 commit 91725e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/containers-storage/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 91725e0

Please sign in to comment.