Commit 849693f07c

Andrew Kelley <andrew@ziglang.org>
2024-05-27 18:36:45
zig build: give a root progress name
Now it's more clear when zig is building the build script vs building the actual project.
1 parent 0ca2b4e
Changed files (1)
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();