authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-09-04 19:59:47-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-09-04 19:59:47-07:00
log582fb4adc10dc10a25800ac483b2c5f76a67d838
treecd335b340b7ae0a8744e0f550866f6b9013f80a2
parent98d3f26362f22aa91ace98b07249af07132e350b

Maker: use quotes when reporting error with file path


1 files changed, 2 insertions(+), 2 deletions(-)

lib/compiler/Maker.zig+2-2
......@@ -1565,10 +1565,10 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig {
15651565
15661566 const configuration = c: {
15671567 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 });
15691569 defer file.close(io);
15701570 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 });
15721572 };
15731573 // Technically if the configuration is marked as poisoned, we could
15741574 // already delete the file now, but we leave it around in case the