diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-06 17:52:57 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:08 -0800 |
| commit | 8328de24f13e21e325207b19288a143854df50df (patch) | |
| tree | ef7c9c46f969e31258a4c052c85f5a9ecfc34b80 /lib/std/Build/Step/UpdateSourceFiles.zig | |
| parent | dd1d15b72aa3bae4b38e2337609758ffb7a7b55a (diff) | |
| download | zig-8328de24f13e21e325207b19288a143854df50df.tar.gz zig-8328de24f13e21e325207b19288a143854df50df.zip | |
update all occurrences of openFile to receive an io instance
Diffstat (limited to 'lib/std/Build/Step/UpdateSourceFiles.zig')
| -rw-r--r-- | lib/std/Build/Step/UpdateSourceFiles.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Build/Step/UpdateSourceFiles.zig b/lib/std/Build/Step/UpdateSourceFiles.zig index 7cdb521d21..f5d95182e9 100644 --- a/lib/std/Build/Step/UpdateSourceFiles.zig +++ b/lib/std/Build/Step/UpdateSourceFiles.zig @@ -99,7 +99,7 @@ fn make(step: *Step, options: Step.MakeOptions) !void { .cwd(), io, source_path, - b.build_root.handle.adaptToNewApi(), + b.build_root.handle, output_source_file.sub_path, .{}, ) catch |err| { |
