Skip to content

Commit 67ba66c

Browse files
committed
replace another usage std.fs.path on windows
1 parent 4575ac4 commit 67ba66c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

known-folders.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ fn getPathInner(
190190
const env_var = system.getenv(env_path.env_var) orelse return null;
191191

192192
if (env_path.subdir) |sub_dir| {
193-
return try std.fs.path.join(allocator, &[_][]const u8{ env_var, sub_dir });
193+
return try std.Io.Dir.path.join(allocator, &[_][]const u8{ env_var, sub_dir });
194194
} else {
195195
return try allocator.dupe(u8, env_var);
196196
}

0 commit comments

Comments
 (0)