| ... | ... | @@ -62,7 +62,7 @@ pub const Module = struct { |
| 62 | 62 | const h = &std.crypto.hash.Blake3.init(.{}); |
| 63 | 63 | for (file_list_2.items) |item| { |
| 64 | 64 | const abs_path = try u.concat(&[_][]const u8{cdpath, "/", self.clean_path, "/", item}); |
| 65 | | const file = try std.fs.openFileAbsolute(abs_path, .{}); |
| 65 | const file = try std.fs.cwd().openFile(abs_path, .{}); |
| 66 | 66 | defer file.close(); |
| 67 | 67 | const input = try file.reader().readAllAlloc(gpa, u.mb); |
| 68 | 68 | h.update(input); |