diff --git a/main.go b/main.go index a95720b..b26df6f 100644 --- a/main.go +++ b/main.go @@ -424,10 +424,10 @@ func isPkgFailed(pkg *BuildPackage) bool { failed = false } else { failed = true - newContent = append(newContent, scanner.Text()) + newContent = append(newContent, scanner.Text()+"\n") } } else { - newContent = append(newContent, scanner.Text()) + newContent = append(newContent, scanner.Text()+"\n") } }