Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit abf6763

Browse files
committed
Fix spawn reference return
1 parent e156df0 commit abf6763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ class RustLanguageClient extends AutoLanguageClient {
329329
return checkToolchain(this.busySignalService)
330330
.then(toolchain => checkRls(this.busySignalService).then(() => toolchain))
331331
.then(toolchain => {
332-
cp.spawn("rustup", ["run", configToolchain(), "rls"], { env: serverEnv(toolchain) })
332+
return cp.spawn("rustup", ["run", configToolchain(), "rls"], { env: serverEnv(toolchain) })
333333
})
334334
}
335335
}

0 commit comments

Comments
 (0)