1
0
Fork 0
mirror of synced 2026-06-05 14:28:19 +00:00

refactor: fixed checksum key

This commit is contained in:
Jatin 2026-01-29 17:31:34 +05:30
commit 0b4d9af9ef
No known key found for this signature in database
GPG key ID: 0C17698EE30CA603
3 changed files with 3 additions and 3 deletions

2
dist/pre/index.js vendored
View file

@ -88012,7 +88012,7 @@ function verifyChecksum(downloadPath, isTLS, variant, platform) {
: CHECKSUMS["non_tls"][variant];
break;
case "darwin":
expectedChecksum = CHECKSUMS["darwin"][variant];
expectedChecksum = CHECKSUMS["darwin"];
break;
default:
throw new Error(`Unsupported platform: ${platform}`);

File diff suppressed because one or more lines are too long

View file

@ -34,7 +34,7 @@ export function verifyChecksum(
: CHECKSUMS["non_tls"][variant];
break;
case "darwin":
expectedChecksum = CHECKSUMS["darwin"][variant];
expectedChecksum = CHECKSUMS["darwin"];
break;
default:
throw new Error(`Unsupported platform: ${platform}`);