We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53bc8b6 commit 620b91cCopy full SHA for 620b91c
lib/compiler/build_runner.zig
@@ -708,7 +708,7 @@ fn runStepNames(
708
709
const total_count = success_count + failure_count + pending_count + skipped_count;
710
ttyconf.setColor(w, .cyan) catch {};
711
- w.writeAll("Build Summary:") catch {};
+ w.writeAll("\nBuild Summary:") catch {};
712
ttyconf.setColor(w, .reset) catch {};
713
w.print(" {d}/{d} steps succeeded", .{ success_count, total_count }) catch {};
714
if (skipped_count > 0) w.print("; {d} skipped", .{skipped_count}) catch {};
0 commit comments