| ... | ... | @@ -1250,11 +1250,9 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { |
| 1250 | 1250 | }) }); |
| 1251 | 1251 | } |
| 1252 | 1252 | |
| 1253 | | const rand_int = randInt(io, u64); |
| 1254 | | const tmp_dir_sub_path = "tmp" ++ Dir.path.sep_str ++ std.fmt.hex(rand_int); |
| 1255 | 1253 | const config_tmp_path: Path = .{ |
| 1256 | 1254 | .root_dir = graph.local_cache_root, |
| 1257 | | .sub_path = try arena.dupe(u8, tmp_dir_sub_path), |
| 1255 | .sub_path = try arena.print("tmp" ++ Dir.path.sep_str ++ "{x}", .{randInt(io, u64)}), |
| 1258 | 1256 | }; |
| 1259 | 1257 | const config_tmp_file: Io.File = try config_tmp_path.root_dir.handle.createFile( |
| 1260 | 1258 | io, |