Skip to content

Commit a5a46b4

Browse files
committed
adding support for linux ppc64le
1 parent d86ebcd commit a5a46b4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dist/setup/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93251,6 +93251,8 @@ class BaseDistribution {
9325193251
switch (arch) {
9325293252
case 'arm':
9325393253
return 'armv7l';
93254+
case 'ppc64':
93255+
return 'ppc64le';
9325493256
default:
9325593257
return arch;
9325693258
}

src/distributions/base-distribution.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ export default abstract class BaseDistribution {
288288
switch (arch) {
289289
case 'arm':
290290
return 'armv7l';
291+
case 'ppc64':
292+
return 'ppc64le';
291293
default:
292294
return arch;
293295
}

0 commit comments

Comments
 (0)