Remove process.env from tasks

Part of #108804
This commit is contained in:
Alex Ross
2021-03-30 16:54:57 +02:00
parent 1f06361cd3
commit dddbfa6165
3 changed files with 8 additions and 61 deletions

View File

@@ -44,6 +44,12 @@ export class ExtHostTask extends ExtHostTaskBase {
authority: initData.remote.authority,
platform: process.platform
});
} else {
this.registerTaskSystem(Schemas.file, {
scheme: Schemas.file,
authority: '',
platform: process.platform
});
}
this._proxy.$registerSupportedExecutions(true, true, true);
}