From 849693f07c882fad369e557940583b8ac9d1c648 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 27 May 2024 09:36:45 -0700 Subject: [PATCH] zig build: give a root progress name Now it's more clear when zig is building the build script vs building the actual project. --- src/main.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.zig b/src/main.zig index ac8a483d17..3ee90671b2 100644 --- a/src/main.zig +++ b/src/main.zig @@ -4795,6 +4795,7 @@ fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !void { const color: Color = .auto; const root_prog_node = std.Progress.start(.{ .disable_printing = (color == .off), + .root_name = "Compile Build Script", }); defer root_prog_node.end();