Add missing newline

This commit is contained in:
Tianon Gravi 2018-01-24 10:12:14 -08:00
parent f36ef9d30b
commit b84de49388
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func cmdPutShared(c *cli.Context) error {
if !dryRun {
tagYaml := tagsToManifestToolYaml(targetRepo, tagsToPush...) + yaml
if err := manifestToolPushFromSpec(tagYaml); err != nil {
fmt.Fprintf(os.Stderr, "warning: failed putting %s, skipping (collecting errors)", groupIdentifier)
fmt.Fprintf(os.Stderr, "warning: failed putting %s, skipping (collecting errors)\n", groupIdentifier)
failed = append(failed, fmt.Sprintf("- %s: %v", groupIdentifier, err))
continue
}