Skip to content

Commit

Permalink
Disable signature verification for now
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptronicek authored and mustard-mh committed Jun 19, 2024
1 parent 26a88c1 commit 0a0c536
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ export class ExtensionsDownloader extends Disposable {
}

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

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

0 comments on commit 0a0c536

Please sign in to comment.