We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f637774 commit 1c60855Copy full SHA for 1c60855
1 file changed
src/vs/workbench/api/node/extHostDebugService.ts
@@ -766,7 +766,7 @@ export class ExtHostVariableResolverService extends AbstractVariableResolverServ
766
return configurationService.getConfiguration(undefined, folderUri).get<string>(section);
767
},
768
getExecPath: (): string | undefined => {
769
- return undefined; // does not exist in EH
+ return process.env['VSCODE_EXEC_PATH'];
770
771
getFilePath: (): string | undefined => {
772
const activeEditor = editorService.activeEditor();
0 commit comments