diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-08 13:46:29 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:08 -0800 |
| commit | 264d714321d3e5f1f189af393e1fb24d101a7e91 (patch) | |
| tree | cb637a9c8c8565790db5b8cbcd1e960f88523da1 /src/Package/Fetch/git.zig | |
| parent | f53248a40936ebc9aaf75ddbd16e67ebec05ab84 (diff) | |
| download | zig-264d714321d3e5f1f189af393e1fb24d101a7e91.tar.gz zig-264d714321d3e5f1f189af393e1fb24d101a7e91.zip | |
update all openDir() sites to accept io instance
Diffstat (limited to 'src/Package/Fetch/git.zig')
| -rw-r--r-- | src/Package/Fetch/git.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Package/Fetch/git.zig b/src/Package/Fetch/git.zig index 7b08a89cae..3f0ffb04cd 100644 --- a/src/Package/Fetch/git.zig +++ b/src/Package/Fetch/git.zig @@ -254,7 +254,7 @@ pub const Repository = struct { switch (entry.type) { .directory => { try dir.makeDir(entry.name); - var subdir = try dir.openDir(entry.name, .{}); + var subdir = try dir.openDir(io, entry.name, .{}); defer subdir.close(io); const sub_path = try std.fs.path.join(repository.odb.allocator, &.{ current_path, entry.name }); defer repository.odb.allocator.free(sub_path); |
