Skip to content

Commit

Permalink
std.Build.Step.Run: don't create empty progress node
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrk committed May 24, 2024
1 parent a0c6e72 commit f2f512f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/std/Build/Step/Run.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit f2f512f

Please sign in to comment.