Skip to content

Commit 0a0c536

Browse files
filiptronicekmustard-mh
authored andcommitted
Disable signature verification for now
1 parent 26a88c1 commit 0a0c536

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ export class ExtensionsDownloader extends Disposable {
115115
}
116116

117117
const value = this.configurationService.getValue('extensions.verifySignature');
118-
return isBoolean(value) ? value : true;
118+
// for now we disable signature verification until we properly test it with the Open VSX deployment
119+
return false ?? (isBoolean(value) ? value : true);
119120
}
120121

121122
private async downloadVSIX(extension: IGalleryExtension, operation: InstallOperation): Promise<URI> {

0 commit comments

Comments
 (0)