Terminate return json output with newline

This commit is contained in:
Steve Streeting 2015-08-25 16:56:42 +01:00
parent 0968ac04dd
commit 1b52eb378f

@ -80,5 +80,6 @@ func AddCommits(repo *test.Repo) {
fmt.Fprintf(os.Stderr, "addcommits: Error writing JSON to stdout: %v\n", err) fmt.Fprintf(os.Stderr, "addcommits: Error writing JSON to stdout: %v\n", err)
os.Exit(3) os.Exit(3)
} }
os.Stdout.WriteString("\n")
} }