authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-05-29 20:17:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-06-29 23:50:18-07:00
logc616c00db613c2a6fe7d5acfdfb884c006baa600
tree092f99b496ad848ec84efa35f26fdfe642ca5934
parent6a052277c37dff298b1ca18c4f07c0facf1beecf

Maker: restore "new" as the default build summary in watch mode


1 files changed, 2 insertions(+), 2 deletions(-)

lib/compiler/Maker.zig+2-2
......@@ -592,7 +592,7 @@ pub fn main(init: process.Init.Minimal) !void {
592592
593593 .error_style = error_style,
594594 .multiline_errors = multiline_errors,
595 .summary = summary orelse if (watch or webui_listen != null) .line else .failures,
595 .summary = summary orelse if (watch or webui_listen != null) .new else .failures,
596596 };
597597 defer {
598598 maker.memory_blocked_steps.deinit(gpa);
......@@ -997,7 +997,7 @@ fn makeStepNames(
997997 t.setColor(.reset) catch {};
998998 }
999999
1000 w.writeAll("\n") catch {};
1000 w.writeByte('\n') catch {};
10011001
10021002 if (maker.summary == .line) break :summary;
10031003