properly resolve ${file} variable; fixes #95423

This commit is contained in:
Andre Weinand
2020-06-15 22:44:29 +02:00
parent 89d0406f06
commit f9c6fa3161
3 changed files with 52 additions and 19 deletions

View File

@@ -119,7 +119,6 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
}
protected createVariableResolver(folders: vscode.WorkspaceFolder[], editorService: ExtHostDocumentsAndEditors, configurationService: ExtHostConfigProvider): AbstractVariableResolverService {
return new ExtHostVariableResolverService(folders, editorService, configurationService, process.env as env.IProcessEnvironment);
return new ExtHostVariableResolverService(folders, undefined, configurationService, process.env as env.IProcessEnvironment);
}
}