Get forked watcher & searcher working

This commit is contained in:
Asher
2019-01-23 13:43:20 -06:00
committed by Kyle Carberry
parent 4cd6bed8d2
commit 5cb657b415
6 changed files with 40 additions and 36 deletions

View File

@ -63,6 +63,7 @@ export const handleNewSession = (connection: SendableConnection, newSession: New
stdin: proc.stdin,
stderr: proc.stderr,
stdout: proc.stdout,
stdio: proc.stdio,
on: (...args: any[]) => (<any>proc.on)(...args),
write: (d) => proc.stdin.write(d),
kill: (s) => proc.kill(s || "SIGTERM"),