mirror of https://git.tuxpa.in/a/code-server.git
Fix error when shared process exits with null
This commit is contained in:
parent
4af84fcaf6
commit
e12fcd3a0d
|
@ -115,8 +115,10 @@ export class SharedProcess {
|
|||
this.activeProcess = activeProcess;
|
||||
|
||||
await new Promise((resolve, reject): void => {
|
||||
const doReject = (error: Error | number): void => {
|
||||
if (typeof error === "number") {
|
||||
const doReject = (error: Error | number | null): void => {
|
||||
if (error === null) {
|
||||
error = new Error("Exited unexpectedly");
|
||||
} else if (typeof error === "number") {
|
||||
error = new Error(`Exited with ${error}`);
|
||||
}
|
||||
activeProcess.removeAllListeners();
|
||||
|
|
Loading…
Reference in New Issue