浏览代码

Add missing newline

Tianon Gravi 7 年之前
父节点
当前提交
891033f93a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bashbrew/go/src/bashbrew/cmd-put-shared.go

+ 1 - 1
bashbrew/go/src/bashbrew/cmd-put-shared.go

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