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 committed Jun 7, 2024
1 parent 4d0c792 commit da54640
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 da54640

Please sign in to comment.