commit 9331da8fe3854c57446574a1afc75e6e0811f610 (tree) parent ca03c9c512f09baff0ea6e44ec665ec6310526c7 Author: Andrew Kelley <andrew@ziglang.org> Date: Fri, 24 May 2024 15:14:30 -0700 std.Build.Step.Run: don't create empty progress node Diffstat:
| M | lib/std/Build/Step/Run.zig | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/Build/Step/Run.zig b/lib/std/Build/Step/Run.zig @@ -1236,7 +1236,7 @@ fn spawnChildAndCollect( } if (run.stdio != .zig_test) { - child.progress_node = prog_node.start("", 0); + child.progress_node = prog_node; } try child.spawn();