From dd1d15b72aa3bae4b38e2337609758ffb7a7b55a Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 6 Dec 2025 17:32:19 -0800 Subject: update all occurrences of std.fs.Dir to std.Io.Dir --- src/Package/Fetch/git.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Package/Fetch/git.zig') diff --git a/src/Package/Fetch/git.zig b/src/Package/Fetch/git.zig index 0fca3a0ee3..abaa8fef73 100644 --- a/src/Package/Fetch/git.zig +++ b/src/Package/Fetch/git.zig @@ -214,7 +214,7 @@ pub const Repository = struct { pub fn checkout( repository: *Repository, io: Io, - worktree: std.fs.Dir, + worktree: Io.Dir, commit_oid: Oid, diagnostics: *Diagnostics, ) !void { @@ -231,7 +231,7 @@ pub const Repository = struct { fn checkoutTree( repository: *Repository, io: Io, - dir: std.fs.Dir, + dir: Io.Dir, tree_oid: Oid, current_path: []const u8, diagnostics: *Diagnostics, -- cgit v1.2.3