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 ebb343f + 6220ad9 commit 1d1a579Copy full SHA for 1d1a579
src/hlsBinaries.ts
@@ -147,7 +147,9 @@ async function callAsync(
147
if (stdout) {
148
logger.error(`stdout: ${stdout}`);
149
}
150
- reject(Error(`${command} exited with exit code ${err.code}:\n${stdout}\n${stderr}`));
+ reject(Error(`\`${command}\` exited with exit code ${err.code}.
151
+ Consult the [Extensions Output](https://github.com/haskell/vscode-haskell#investigating-and-reporting-problems)
152
+ for details.`));
153
} else {
154
resolve(stdout?.trim());
155
0 commit comments