Merge a5a46b4a0e7da12fdc9b7973ee99787a26cb296c into 26961cf329f22f6837d5f54c3efd76b480300ace

This commit is contained in:
adilhusain-s 2024-07-18 08:19:28 -07:00 committed by GitHub
commit c9c1aa6c44
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

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

View File

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