(stream: Stream.Stream<Uint8Array, any>)
| 98 | const spawner = yield* ChildProcessSpawner.ChildProcessSpawner |
| 99 | |
| 100 | const collectStream = (stream: Stream.Stream<Uint8Array, any>) => |
| 101 | stream.pipe( |
| 102 | Stream.decodeText(), |
| 103 | Stream.mkString, |
| 104 | Effect.orElseSucceed(() => "") |
| 105 | ) |
| 106 | |
| 107 | const runCommand = Effect.fn("runCommand")(function*( |
| 108 | command: string, |