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 60ca73f + 14f68c2 commit 4264523Copy full SHA for 4264523
src/hlsBinaries.ts
@@ -116,7 +116,7 @@ async function getProjectGhcVersion(
116
async (progress, token) => {
117
return new Promise<string>((resolve, reject) => {
118
const args = ['--project-ghc-version'];
119
- const command: string = wrapper + args.join(' ');
+ const command: string = wrapper + ' ' + args.join(' ');
120
logger.info(`Executing '${command}' in cwd '${dir}' to get the project or file ghc version`);
121
token.onCancellationRequested(() => {
122
logger.warn(`User canceled the execution of '${command}'`);
0 commit comments