Merge a5a46b4a0e7da12fdc9b7973ee99787a26cb296c into b9b25d45f70a5d94d88496aa4896bf9ed8f49b67

This commit is contained in:
adilhusain-s 2025-12-02 11:53:41 +05:30 committed by GitHub
commit e83f076611
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

2
dist/setup/index.js vendored
View File

@ -99403,6 +99403,8 @@ class BaseDistribution {
switch (arch) {
case 'arm':
return 'armv7l';
case 'ppc64':
return 'ppc64le';
default:
return arch;
}

View File

@ -338,6 +338,8 @@ export default abstract class BaseDistribution {
switch (arch) {
case 'arm':
return 'armv7l';
case 'ppc64':
return 'ppc64le';
default:
return arch;
}