diff --git a/dist/setup/index.js b/dist/setup/index.js index 0dcd234..89fe69a 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -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; diff --git a/src/system.ts b/src/system.ts index e54146d..59126a6 100644 --- a/src/system.ts +++ b/src/system.ts @@ -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;