Skip to content

Commit 2f69e9c

Browse files
kfarnungrvagg
authored andcommitted
Add support for 'linux-s390x' (#7)
1 parent 7e5eb2d commit 2f69e9c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ OS / architecture / packaging specifiers used in the listings include:
3737
* **linux-armv6l**: normally .tar.gz and .tar.xz
3838
* **linux-armv7l**: normally .tar.gz and .tar.xz
3939
* **linux-ppc64le**: normally .tar.gz and .tar.xz
40+
* **linux-s390x**: normally .tar.gz and .tar.xz
4041
* **linux-x64**: normally .tar.gz and .tar.xz
4142
* **linux-x86**: normally .tar.gz and .tar.xz
4243
* **osx-x64-pkg**: OSX .pkg installer (64-bit only since io.js v1)

transform-filename.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const assert = require('assert')
1111
, 'linux-x64' : 'linux-x64'
1212
, 'linux-x86' : 'linux-x86'
1313
, 'linux-ppc64le' : 'linux-ppc64le'
14+
, 'linux-s390x' : 'linux-s390x'
1415
, 'smartos-x64' : 'smartos-x64'
1516
, 'smartos-x86' : 'smartos-x86'
1617
, 'sunos-x64' : 'sunos-x64'
@@ -148,6 +149,8 @@ if (module === require.main) {
148149
, { file: 'node-v8.1.4-win-x64.zip', type: 'win-x64-zip' }
149150
, { file: 'node-v8.1.4-win-x86.7z', type: 'win-x86-7z' }
150151
, { file: 'node-v8.1.4-win-x86.zip', type: 'win-x86-zip' }
152+
, { file: 'node-v10.9.0-linux-s390x.tar.gz', type: 'linux-s390x'}
153+
, { file: 'node-v10.9.0-linux-s390x.tar.xz'}
151154
]
152155

153156
tests.forEach(function (test) {

0 commit comments

Comments
 (0)