Commit 5df52ca0a2

Andrew Kelley <andrew@ziglang.org>
2025-07-20 21:31:26
build runner: print newline before summary
1 parent c8c59d7
Changed files (1)
lib
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 {};