update all access() to access(io)

This commit is contained in:
Andrew Kelley
2025-12-08 17:14:31 -08:00
parent 314c906dba
commit 950d18ef69
33 changed files with 159 additions and 197 deletions
+1 -1
View File
@@ -1699,7 +1699,7 @@ pub fn addCheckFile(
return Step.CheckFile.create(b, file_source, options);
}
pub fn truncateFile(b: *Build, dest_path: []const u8) (Io.Dir.MakeError || Io.Dir.StatFileError)!void {
pub fn truncateFile(b: *Build, dest_path: []const u8) (Io.Dir.MakeError || Io.Dir.StatPathError)!void {
const io = b.graph.io;
if (b.verbose) log.info("truncate {s}", .{dest_path});
const cwd = Io.Dir.cwd();