Commit 9331da8fe3

Andrew Kelley <andrew@ziglang.org>
2024-05-25 00:14:30
std.Build.Step.Run: don't create empty progress node
1 parent ca03c9c
Changed files (1)
lib
std
Build
Step
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();