| ... | @@ -264,7 +264,7 @@ pub const ChildProcess = struct { | ... | @@ -264,7 +264,7 @@ pub const ChildProcess = struct { |
| 264 | | 264 | |
| 265 | // TODO collect output in a deadlock-avoiding way on Windows. | 265 | // TODO collect output in a deadlock-avoiding way on Windows. |
| 266 | // https://github.com/ziglang/zig/issues/6343 | 266 | // https://github.com/ziglang/zig/issues/6343 |
| 267 | if (builtin.os.tag == .windows) { | 267 | if (builtin.os.tag == .windows or builtin.os.tag == .haiku) { |
| 268 | const stdout_in = child.stdout.?.reader(); | 268 | const stdout_in = child.stdout.?.reader(); |
| 269 | const stderr_in = child.stderr.?.reader(); | 269 | const stderr_in = child.stderr.?.reader(); |
| 270 | | 270 | |