Introduce a server method to check if extensions are ready on server

This commit is contained in:
Sandeep Somavarapu
2020-11-19 12:54:19 +01:00
parent 835ce347fe
commit 22895e9856
5 changed files with 15 additions and 1 deletions

View File

@@ -126,7 +126,7 @@ export class Main {
extensions.forEach(e => console.log(getId(e.manifest, showVersions)));
}
private async installExtensions(extensions: string[], builtinExtensionIds: string[], isMachineScoped: boolean, force: boolean): Promise<void> {
async installExtensions(extensions: string[], builtinExtensionIds: string[], isMachineScoped: boolean, force: boolean): Promise<void> {
const failed: string[] = [];
const installedExtensionsManifests: IExtensionManifest[] = [];
if (extensions.length) {