| ... | ... | @@ -5749,8 +5749,11 @@ fn cmdBuild( |
| 5749 | 5749 | defer if (configuration_lock) |*l| l.release(io); |
| 5750 | 5750 | |
| 5751 | 5751 | if (print_configuration_path) { |
| 5752 | | var stdout_writer = Io.File.stdout().writerStreaming(io, &.{}); |
| 5753 | | configuration_path.format(&stdout_writer.interface) catch fatal("failed printing cache file path: {t}", .{stdout_writer.err.?}); |
| 5752 | var stdout_writer = Io.File.stdout().writerStreaming(io, &stdout_buffer); |
| 5753 | stdout_writer.interface.print("{f}\n", .{configuration_path}) catch |
| 5754 | fatal("failed printing cache file path: {t}", .{stdout_writer.err.?}); |
| 5755 | stdout_writer.flush() catch |err| |
| 5756 | fatal("failed printing cache file path: {t}", .{err}); |
| 5754 | 5757 | return cleanExit(io); |
| 5755 | 5758 | } |
| 5756 | 5759 | const make_runner = make_runner_task.await(io) catch |err| fatal("failed compiling maker: {t}", .{err}); |