diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-05-27 09:36:45 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-05-27 20:56:48 -0700 |
| commit | 849693f07c882fad369e557940583b8ac9d1c648 (patch) | |
| tree | 7d92c3c417e2311a1a335f4e9a22fb5cff26a28e /src/main.zig | |
| parent | 0ca2b4e0f1b34122aada3c649ce3a627f3377ca3 (diff) | |
| download | zig-849693f07c882fad369e557940583b8ac9d1c648.tar.gz zig-849693f07c882fad369e557940583b8ac9d1c648.zip | |
zig build: give a root progress name
Now it's more clear when zig is building the build script vs building
the actual project.
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 1 |
1 files changed, 1 insertions, 0 deletions
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(); |
