Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding support for linux ppc64le #862

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
adding support for linux ppc64le
  • Loading branch information
adilhusain-s committed Jan 11, 2024
commit a5a46b4a0e7da12fdc9b7973ee99787a26cb296c
2 changes: 2 additions & 0 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
@@ -93251,6 +93251,8 @@ class BaseDistribution {
switch (arch) {
case 'arm':
return 'armv7l';
case 'ppc64':
return 'ppc64le';
default:
return arch;
}
2 changes: 2 additions & 0 deletions src/distributions/base-distribution.ts
Original file line number Diff line number Diff line change
@@ -288,6 +288,8 @@ export default abstract class BaseDistribution {
switch (arch) {
case 'arm':
return 'armv7l';
case 'ppc64':
return 'ppc64le';
default:
return arch;
}