| author | |
| committer | |
| log | 914d57a1a64dd08983aeaa3e1eeb286043211b58 |
| tree | 32229b3c5f0d250caa4b4a12c099384c873330d1 |
| parent | 7a78b92fa0283501664a6f25bc68471dea04fab5 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/child_process.zig+1-1| ... | ... | @@ -264,7 +264,7 @@ pub const ChildProcess = struct { |
| 264 | 264 | |
| 265 | 265 | // TODO collect output in a deadlock-avoiding way on Windows. |
| 266 | 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 | 268 | const stdout_in = child.stdout.?.reader(); |
| 269 | 269 | const stderr_in = child.stderr.?.reader(); |
| 270 | 270 |