Skip to content

Commit

Permalink
microsoft#1714 fix launch problem
Browse files Browse the repository at this point in the history
  • Loading branch information
YuyaYokoyama8864 committed Dec 26, 2024
1 parent 7ba0eb9 commit 026a499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/launchUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export async function resolveLaunchConfigurationForRunner(runner: BaseRunner, te
agentArg += ',append=false';
}
if (os.platform() === 'win32') {
agentArg = `"${agentArg}"`;
agentArg = `${agentArg}`;
}
(debugConfiguration.vmArgs as string[]).push(agentArg);
}
Expand Down

0 comments on commit 026a499

Please sign in to comment.