zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5df52ca0a28d204da0557e88c6c9fe1818bcd6af (tree)
parent c8c59d7ba5d4dbca72c5a529b080a12aa2c164b5
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun, 20 Jul 2025 12:31:26 -0700

build runner: print newline before summary

Diffstat:
Mlib/compiler/build_runner.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/compiler/build_runner.zig b/lib/compiler/build_runner.zig @@ -708,7 +708,7 @@ fn runStepNames( const total_count = success_count + failure_count + pending_count + skipped_count; ttyconf.setColor(w, .cyan) catch {}; - w.writeAll("Build Summary:") catch {}; + w.writeAll("\nBuild Summary:") catch {}; ttyconf.setColor(w, .reset) catch {}; w.print(" {d}/{d} steps succeeded", .{ success_count, total_count }) catch {}; if (skipped_count > 0) w.print("; {d} skipped", .{skipped_count}) catch {};