Skip to content

Commit 44d04b3

Browse files
committed
minimize changes
1 parent d78b731 commit 44d04b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/shared/lsp/utils/platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export async function validateNodeExe(nodePath: string, lsp: string, args: strin
4242

4343
// Check that we can start `node …/lsp.js --stdio …`.
4444
const lspProc = new ChildProcess(nodePath, [lsp, ...args], { logging: 'no' })
45-
4645
try {
4746
// Start asynchronously (it never stops; we need to stop it below).
4847
lspProc.run().catch((e) => logger.error('failed to run: %s', lspProc.toString(false, true)))
@@ -91,6 +90,7 @@ export function createServerOptions({
9190
args.unshift('--inspect=6080')
9291
}
9392
const lspProcess = new ChildProcess(executable, args)
93+
9494
// this is a long running process, awaiting it will never resolve
9595
void lspProcess.run()
9696

0 commit comments

Comments
 (0)