mirror of
https://github.com/coder/code-server.git
synced 2025-08-02 14:02:51 +08:00
Get forked watcher & searcher working
This commit is contained in:
@ -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"),
|
||||
|
Reference in New Issue
Block a user