This commit is contained in:
adilhusain-s 2023-06-13 11:21:02 -07:00 committed by GitHub
commit c250761150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

6
dist/setup/index.js vendored
View File

@ -61860,9 +61860,9 @@ function getArch(arch) {
case 'x64':
arch = 'amd64';
break;
// case 'ppc':
// arch = 'ppc64';
// break;
case 'ppc64':
arch = 'ppc64le';
break;
case 'x32':
arch = '386';
break;

View File

@ -24,9 +24,9 @@ export function getArch(arch: string): string {
case 'x64':
arch = 'amd64';
break;
// case 'ppc':
// arch = 'ppc64';
// break;
case 'ppc64':
arch = 'ppc64le';
break;
case 'x32':
arch = '386';
break;