Skip to content

Commit 14f68c2

Browse files
authored
Correct log of exec command
1 parent 60ca73f commit 14f68c2

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)