authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-05-10 17:44:44-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-05-11 06:28:45-07:00
log661a9be66bdee78530e5a6fbb6463297a405beee
tree876bcb7b07f5ed621603892adb5a94fd57fa78a6
parent17c1fa64c375e6d0df129791bbd9d506c3be9104

std.Build.Step.Run: add missing call to writeManifest

fixes #19938

1 files changed, 3 insertions(+), 1 deletions(-)

lib/std/Build/Step/Run.zig+3-1
...@@ -709,7 +709,9 @@ fn make(step: *Step, prog_node: *std.Progress.Node) !void {...@@ -709,7 +709,9 @@ fn make(step: *Step, prog_node: *std.Progress.Node) !void {
709 b.fmt("{s}{s}", .{ placeholder.output.prefix, output_path });709 b.fmt("{s}{s}", .{ placeholder.output.prefix, output_path });
710 }710 }
711711
712 return runCommand(run, argv_list.items, has_side_effects, output_dir_path, prog_node);712 try runCommand(run, argv_list.items, has_side_effects, output_dir_path, prog_node);
713 try step.writeManifest(&man);
714 return;
713 };715 };
714716
715 // We do not know the final output paths yet, use temp paths to run the command.717 // We do not know the final output paths yet, use temp paths to run the command.