Skip to content

Commit 4264523

Browse files
authored
Merge pull request #433 from haskell/correct-log
Correct log of exec command
2 parents 60ca73f + 14f68c2 commit 4264523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hlsBinaries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ async function getProjectGhcVersion(
116116
async (progress, token) => {
117117
return new Promise<string>((resolve, reject) => {
118118
const args = ['--project-ghc-version'];
119-
const command: string = wrapper + args.join(' ');
119+
const command: string = wrapper + ' ' + args.join(' ');
120120
logger.info(`Executing '${command}' in cwd '${dir}' to get the project or file ghc version`);
121121
token.onCancellationRequested(() => {
122122
logger.warn(`User canceled the execution of '${command}'`);

0 commit comments

Comments
 (0)