Return early when forking to reduce indentation

This commit is contained in:
Asher 2020-11-03 14:42:37 -06:00
parent c10450c4c5
commit e243f6e369
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A

View File

@ -74,7 +74,10 @@ export class VscodeProvider {
}
private fork(): Promise<cp.ChildProcess> {
if (!this._vscode) {
if (this._vscode) {
return this._vscode
}
logger.debug("forking vs code...")
const vscode = cp.fork(path.join(this.serverRootPath, "fork"))
vscode.on("error", (error) => {
@ -96,7 +99,6 @@ export class VscodeProvider {
vscode.once("error", reject)
vscode.once("exit", (code) => reject(new Error(`VS Code exited unexpectedly with code ${code}`)))
})
}
return this._vscode
}