Commit 7b4b5d23 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer: output a newline after each MR line

parent 46f5a9b1
......@@ -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)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment