| ... | @@ -76,7 +76,7 @@ pub const Module = struct { | ... | @@ -76,7 +76,7 @@ pub const Module = struct { |
| 76 | | 76 | |
| 77 | const h = &std.crypto.hash.Blake3.init(.{}); | 77 | const h = &std.crypto.hash.Blake3.init(.{}); |
| 78 | for (file_list_2.items) |item| { | 78 | for (file_list_2.items) |item| { |
| 79 | const abs_path = try u.concat(&.{ cdpath, "/", self.clean_path, "/", item }); | 79 | const abs_path = try std.fs.path.join(gpa, &.{ cdpath, self.clean_path, item }); |
| 80 | const file = try std.fs.cwd().openFile(abs_path, .{}); | 80 | const file = try std.fs.cwd().openFile(abs_path, .{}); |
| 81 | defer file.close(); | 81 | defer file.close(); |
| 82 | const input = try file.reader().readAllAlloc(gpa, u.mb * 100); | 82 | const input = try file.reader().readAllAlloc(gpa, u.mb * 100); |