diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-08 19:41:21 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:08 -0800 |
| commit | ebdbbd20ace6e93b581b90075f52946b3832da93 (patch) | |
| tree | 09fb393f4a4578512ddf4906c7df14df5f6f9255 /lib/std/Build/Step/CheckObject.zig | |
| parent | 3725f72293c87a73e0c11e74739574c7b78bb53d (diff) | |
| download | zig-ebdbbd20ace6e93b581b90075f52946b3832da93.tar.gz zig-ebdbbd20ace6e93b581b90075f52946b3832da93.zip | |
update makeDir() sites to specify permissions
Diffstat (limited to 'lib/std/Build/Step/CheckObject.zig')
| -rw-r--r-- | lib/std/Build/Step/CheckObject.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/Build/Step/CheckObject.zig b/lib/std/Build/Step/CheckObject.zig index c6c11ce2b9..ac8fafaa3f 100644 --- a/lib/std/Build/Step/CheckObject.zig +++ b/lib/std/Build/Step/CheckObject.zig @@ -547,12 +547,14 @@ pub fn checkComputeCompare( fn make(step: *Step, make_options: Step.MakeOptions) !void { _ = make_options; const b = step.owner; + const io = b.graph.io; const gpa = b.allocator; const check_object: *CheckObject = @fieldParentPtr("step", step); try step.singleUnchangingWatchInput(check_object.source); const src_path = check_object.source.getPath3(b, step); const contents = src_path.root_dir.handle.readFileAllocOptions( + io, src_path.sub_path, gpa, .limited(check_object.max_bytes), |
