| author | |
| committer | |
| log | 69d65ae472e725726d3c33f23c486d2c871ef8c7 |
| tree | 887e7a8bc26a45b6e94c524c8c9c7b574f5d2983 |
| parent | 3b9dddfb3112724507ab747ae7fac650a8aedb58 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/compiler/Maker.zig+1-1| ... | ... | @@ -1254,7 +1254,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { |
| 1254 | 1254 | const tmp_dir_sub_path = "tmp" ++ Dir.path.sep_str ++ std.fmt.hex(rand_int); |
| 1255 | 1255 | const config_tmp_path: Path = .{ |
| 1256 | 1256 | .root_dir = graph.local_cache_root, |
| 1257 | .sub_path = tmp_dir_sub_path, | |
| 1257 | .sub_path = try arena.dupe(u8, tmp_dir_sub_path), | |
| 1258 | 1258 | }; |
| 1259 | 1259 | const config_tmp_file: Io.File = try config_tmp_path.root_dir.handle.createFile( |
| 1260 | 1260 | io, |