std.Build.Step.Run: don't create empty progress node

This commit is contained in:
Andrew Kelley 2024-05-24 15:14:30 -07:00
parent ca03c9c512
commit 9331da8fe3

View file

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