| ... | @@ -5305,7 +5305,9 @@ fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !void { | ... | @@ -5305,7 +5305,9 @@ fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !void { |
| 5305 | const term = t: { | 5305 | const term = t: { |
| 5306 | std.debug.lockStdErr(); | 5306 | std.debug.lockStdErr(); |
| 5307 | defer std.debug.unlockStdErr(); | 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 | switch (term) { | 5313 | switch (term) { |