Skip to content

Commit 620b91c

Browse files
committed
build runner: print newline before summary
1 parent 53bc8b6 commit 620b91c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/compiler/build_runner.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ fn runStepNames(
708708

709709
const total_count = success_count + failure_count + pending_count + skipped_count;
710710
ttyconf.setColor(w, .cyan) catch {};
711-
w.writeAll("Build Summary:") catch {};
711+
w.writeAll("\nBuild Summary:") catch {};
712712
ttyconf.setColor(w, .reset) catch {};
713713
w.print(" {d}/{d} steps succeeded", .{ success_count, total_count }) catch {};
714714
if (skipped_count > 0) w.print("; {d} skipped", .{skipped_count}) catch {};

0 commit comments

Comments
 (0)