| ... | ... | @@ -1565,10 +1565,10 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { |
| 1565 | 1565 | |
| 1566 | 1566 | const configuration = c: { |
| 1567 | 1567 | var file = configuration_path.root_dir.handle.openFile(io, configuration_path.sub_path, .{}) catch |err| |
| 1568 | | fatal("failed to open configuration file {f}: {t}", .{ configuration_path, err }); |
| 1568 | fatal("failed to open configuration file {qf}: {t}", .{ configuration_path, err }); |
| 1569 | 1569 | defer file.close(io); |
| 1570 | 1570 | break :c Configuration.loadFile(arena, io, file) catch |err| |
| 1571 | | fatal("failed to load configuration file {f}: {t}", .{ configuration_path, err }); |
| 1571 | fatal("failed to load configuration file {qf}: {t}", .{ configuration_path, err }); |
| 1572 | 1572 | }; |
| 1573 | 1573 | // Technically if the configuration is marked as poisoned, we could |
| 1574 | 1574 | // already delete the file now, but we leave it around in case the |