| ... | ... | @@ -432,7 +432,7 @@ pub fn createLimited(gpa: Allocator, options: LimitedOptions) Allocator.Error!*P |
| 432 | 432 | |
| 433 | 433 | /// Does not ensure that the module's root directory exists on-disk; see `Builtin.updateFileOnDisk` for that task. |
| 434 | 434 | pub fn createBuiltin(arena: Allocator, opts: Builtin, dirs: Compilation.Directories) Allocator.Error!*Module { |
| 435 | | const sub_path = "b" ++ Cache.binToHex(opts.hash()); |
| 435 | const sub_path = "b" ++ std.fs.path.sep_str ++ Cache.binToHex(opts.hash()); |
| 436 | 436 | const new = try arena.create(Module); |
| 437 | 437 | new.* = .{ |
| 438 | 438 | .root = try .fromRoot(arena, dirs, .global_cache, sub_path), |