mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Update extHostDebugService.ts
make execPath variable work for EH
This commit is contained in:
@@ -766,7 +766,7 @@ export class ExtHostVariableResolverService extends AbstractVariableResolverServ
|
||||
return configurationService.getConfiguration(undefined, folderUri).get<string>(section);
|
||||
},
|
||||
getExecPath: (): string | undefined => {
|
||||
return undefined; // does not exist in EH
|
||||
return process.env['VSCODE_EXEC_PATH'];
|
||||
},
|
||||
getFilePath: (): string | undefined => {
|
||||
const activeEditor = editorService.activeEditor();
|
||||
|
||||
Reference in New Issue
Block a user