From 87a7568a4437ab4e98ad32573548886529c6b10d Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 3 Jul 2025 18:56:56 -0700 Subject: [PATCH] build runner: restore missing newline --- lib/compiler/build_runner.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/compiler/build_runner.zig b/lib/compiler/build_runner.zig index 3e1ce6e2e1941417f0dd70e6919efc05fbbd40b5..b487febec4537b9df410b6d0416ea94c04c88d00 100644 --- a/lib/compiler/build_runner.zig +++ b/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); -- 2.54.0