Commit 87a7568a44

Andrew Kelley <andrew@ziglang.org>
2025-07-04 03:56:56
build runner: restore missing newline
1 parent 9c8aef5
Changed files (1)
lib
lib/compiler/build_runner.zig
@@ -719,6 +719,8 @@ fn runStepNames(
         if (test_fail_count > 0) w.print("; {d} failed", .{test_fail_count}) catch {};
         if (test_leak_count > 0) w.print("; {d} leaked", .{test_leak_count}) catch {};
 
+        w.writeAll("\n") catch {};
+
         // Print a fancy tree with build results.
         var step_stack_copy = try step_stack.clone(gpa);
         defer step_stack_copy.deinit(gpa);