We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dc6383c + ef4dfab commit 223a667Copy full SHA for 223a667
editors/code/src/installation/server.ts
@@ -88,9 +88,12 @@ async function downloadServer(source: BinarySource.GithubRelease): Promise<boole
88
return false;
89
}
90
91
- if (!isBinaryAvailable(path.join(source.dir, source.file))) assert(false,
+ const binaryPath = path.join(source.dir, source.file);
92
+
93
+ if (!isBinaryAvailable(binaryPath)) assert(false,
94
`Downloaded language server binary is not functional.` +
- `Downloaded from: ${JSON.stringify(source, null, 4)}`
95
+ `Downloaded from GitHub repo ${source.repo.owner}/${source.repo.name} ` +
96
+ `to ${binaryPath}`
97
);
98
99
vscode.window.showInformationMessage(
0 commit comments