authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-03 18:56:56-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-07 22:43:52-07:00
log87a7568a4437ab4e98ad32573548886529c6b10d
treed8828e03cda0a149badc00e38315b2da198945a0
parent9c8aef55b4e287197b552ef18e7dd008e3a527bc

build runner: restore missing newline


1 files changed, 2 insertions(+), 0 deletions(-)

lib/compiler/build_runner.zig+2
......@@ -719,6 +719,8 @@ fn runStepNames(
719719 if (test_fail_count > 0) w.print("; {d} failed", .{test_fail_count}) catch {};
720720 if (test_leak_count > 0) w.print("; {d} leaked", .{test_leak_count}) catch {};
721721
722 w.writeAll("\n") catch {};
723
722724 // Print a fancy tree with build results.
723725 var step_stack_copy = try step_stack.clone(gpa);
724726 defer step_stack_copy.deinit(gpa);