Skip to content

Commit

Permalink
adding support for linux ppc64le
Browse files Browse the repository at this point in the history
  • Loading branch information
adilhusain-s committed Jan 11, 2024
1 parent d86ebcd commit a5a46b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93251,6 +93251,8 @@ class BaseDistribution {
switch (arch) {
case 'arm':
return 'armv7l';
case 'ppc64':
return 'ppc64le';
default:
return arch;
}
Expand Down
2 changes: 2 additions & 0 deletions src/distributions/base-distribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,8 @@ export default abstract class BaseDistribution {
switch (arch) {
case 'arm':
return 'armv7l';
case 'ppc64':
return 'ppc64le';
default:
return arch;
}
Expand Down

0 comments on commit a5a46b4

Please sign in to comment.