zig build: give a root progress name

Now it's more clear when zig is building the build script vs building
the actual project.
This commit is contained in:
Andrew Kelley 2024-05-27 09:36:45 -07:00
parent 0ca2b4e0f1
commit 849693f07c

View File

@ -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();