| ... | ... | @@ -207,7 +207,7 @@ pub fn runCommand( |
| 207 | 207 | const cwd = if (maybe_cwd) |cwd| builder.pathFromRoot(cwd) else builder.build_root; |
| 208 | 208 | |
| 209 | 209 | if (!std.process.can_spawn) { |
| 210 | | const cmd = try std.mem.join(builder.addInstallDirectory, " ", argv); |
| 210 | const cmd = try std.mem.join(builder.allocator, " ", argv); |
| 211 | 211 | std.debug.print("the following command cannot be executed ({s} does not support spawning a child process):\n{s}", .{ @tagName(builtin.os.tag), cmd }); |
| 212 | 212 | builder.allocator.free(cmd); |
| 213 | 213 | return ExecError.ExecNotSupported; |