| ... | ... | @@ -4694,9 +4694,7 @@ fn cmdTranslateC( |
| 4694 | 4694 | |
| 4695 | 4695 | try zig_file.writeAll(formatted); |
| 4696 | 4696 | |
| 4697 | | man.writeManifest() catch |err| warn("failed to write cache manifest: {s}", .{ |
| 4698 | | @errorName(err), |
| 4699 | | }); |
| 4697 | man.writeManifest() catch |err| warn("failed to write cache manifest: {t}", .{err}); |
| 4700 | 4698 | |
| 4701 | 4699 | if (file_system_inputs) |buf| try man.populateFileSystemInputs(buf); |
| 4702 | 4700 | |
| ... | ... | @@ -4716,6 +4714,7 @@ fn cmdTranslateC( |
| 4716 | 4714 | var stdout_writer = fs.File.stdout().writer(&stdout_buffer); |
| 4717 | 4715 | var file_reader = zig_file.reader(&.{}); |
| 4718 | 4716 | _ = try stdout_writer.interface.sendFileAll(&file_reader, .unlimited); |
| 4717 | try stdout_writer.interface.flush(); |
| 4719 | 4718 | return cleanExit(); |
| 4720 | 4719 | } |
| 4721 | 4720 | } |