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.
1 parent 8c51451 commit 5f157e2Copy full SHA for 5f157e2
src/lsptoolshost/dotnetRuntimeExtensionResolver.ts
@@ -160,7 +160,7 @@ export class DotnetRuntimeExtensionResolver implements IHostExecutableResolver {
160
const command = this.platformInfo.isWindows() ? 'where' : 'which';
161
const whereOutput = await promisify(exec)(`${command} dotnet`);
162
if (!whereOutput.stdout) {
163
- throw new Error(`Unable to find dotnet from where.`);
+ throw new Error(`Unable to find dotnet from ${command}.`);
164
}
165
166
const path = whereOutput.stdout.trim();
0 commit comments