packer: output a newline after each MR line

This commit is contained in:
Mitchell Hashimoto 2013-08-11 23:14:42 -07:00
parent 46f5a9b1f6
commit 7b4b5d23fc
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ func (u *MachineReadableUi) Machine(category string, args ...string) {
}
argsString := strings.Join(args, ",")
_, err := fmt.Fprintf(u.Writer, "%d,%s,%s,%s", now.Unix(), target, category, argsString)
_, err := fmt.Fprintf(u.Writer, "%d,%s,%s,%s\n", now.Unix(), target, category, argsString)
if err != nil {
panic(err)
}