| author | |
| committer | |
| log | 4135cc9d0bd6e70808b92d3ab0cce41c9eb87689 |
| tree | 32a2401c305ef3e4a0342456d5ce80c577eb24a7 |
| parent | 3844b91db72d5c3c98f2b2d97043a0c3de1a3d86 |
1 files changed, 3 insertions(+), 1 deletions(-)
src/main.zig+3-1| ... | ... | @@ -5305,7 +5305,9 @@ fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !void { |
| 5305 | 5305 | const term = t: { |
| 5306 | 5306 | std.debug.lockStdErr(); |
| 5307 | 5307 | defer std.debug.unlockStdErr(); |
| 5308 | break :t try child.spawnAndWait(); | |
| 5308 | break :t child.spawnAndWait() catch |err| { | |
| 5309 | fatal("unable to spawn {s}: {s}", .{ child_argv.items[0], @errorName(err) }); | |
| 5310 | }; | |
| 5309 | 5311 | }; |
| 5310 | 5312 | |
| 5311 | 5313 | switch (term) { |