Skip to content

Commit df338a7

Browse files
committed
check for install results size
1 parent 9cff66f commit df338a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/extensionManagement/node/extensionManagementService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ export class ExtensionManagementService extends Disposable implements IExtension
410410
}
411411
throw error;
412412
} finally {
413-
if (isBulkInstall) {
413+
if (installResults.length && isBulkInstall) {
414414
this._onDidInstallExtensions.fire(installResults.map(({ gallery, local, operation }) => ({ identifier: local.identifier, gallery, local, operation })));
415415
}
416416
}

0 commit comments

Comments
 (0)