We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0775fb3 commit f0e8572Copy full SHA for f0e8572
lib/utils.js
@@ -336,6 +336,9 @@ class Utils {
336
if ((0, os_1.arch)().includes('arm')) {
337
return (0, os_1.arch)().includes('64') ? 'linux-arm64' : 'linux-arm';
338
}
339
+ if ((0, os_1.arch)().includes('s390x')) {
340
+ return 'linux-s390x';
341
+ }
342
return (0, os_1.arch)().includes('64') ? 'linux-amd64' : 'linux-386';
343
344
static getJfExecutableName() {
0 commit comments