Skip to content

Commit 0ee554b

Browse files
committed
match node.exe, not nodejs.exe
1 parent 4d91c34 commit 0ee554b

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

transform-filename.js

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
const assert = require('assert')
22
, types = {
3-
'tar.gz' : 'src'
4-
, 'aix-ppc64' : 'aix-ppc64'
5-
, 'darwin-x64' : 'osx-x64-tar'
6-
, 'darwin-x86' : 'osx-x86-tar'
7-
, 'pkg' : 'osx-x64-pkg'
8-
, 'linux-arm64' : 'linux-arm64'
9-
, 'linux-armv7l' : 'linux-armv7l'
10-
, 'linux-armv6l' : 'linux-armv6l'
11-
, 'linux-x64' : 'linux-x64'
12-
, 'linux-x86' : 'linux-x86'
13-
, 'linux-ppc64le' : 'linux-ppc64le'
14-
, 'smartos-x64' : 'smartos-x64'
15-
, 'smartos-x86' : 'smartos-x86'
16-
, 'sunos-x64' : 'sunos-x64'
17-
, 'sunos-x86' : 'sunos-x86'
18-
, 'x64.msi' : 'win-x64-msi'
19-
, 'x86.msi' : 'win-x86-msi'
20-
, 'win-x64/iojs.exe' : 'win-x64-exe'
21-
, 'win-x86/iojs.exe' : 'win-x86-exe'
22-
, 'win-x64/nodejs.exe' : 'win-x64-exe'
23-
, 'win-x86/nodejs.exe' : 'win-x86-exe'
24-
, 'node.exe' : 'win-x86-exe'
25-
, 'x64/node.exe' : 'win-x64-exe'
26-
, 'headers' : 'headers'
3+
'tar.gz' : 'src'
4+
, 'aix-ppc64' : 'aix-ppc64'
5+
, 'darwin-x64' : 'osx-x64-tar'
6+
, 'darwin-x86' : 'osx-x86-tar'
7+
, 'pkg' : 'osx-x64-pkg'
8+
, 'linux-arm64' : 'linux-arm64'
9+
, 'linux-armv7l' : 'linux-armv7l'
10+
, 'linux-armv6l' : 'linux-armv6l'
11+
, 'linux-x64' : 'linux-x64'
12+
, 'linux-x86' : 'linux-x86'
13+
, 'linux-ppc64le' : 'linux-ppc64le'
14+
, 'smartos-x64' : 'smartos-x64'
15+
, 'smartos-x86' : 'smartos-x86'
16+
, 'sunos-x64' : 'sunos-x64'
17+
, 'sunos-x86' : 'sunos-x86'
18+
, 'x64.msi' : 'win-x64-msi'
19+
, 'x86.msi' : 'win-x86-msi'
20+
, 'win-x64/iojs.exe' : 'win-x64-exe'
21+
, 'win-x86/iojs.exe' : 'win-x86-exe'
22+
, 'win-x64/node.exe' : 'win-x64-exe'
23+
, 'win-x86/node.exe' : 'win-x86-exe'
24+
, 'node.exe' : 'win-x86-exe'
25+
, 'x64/node.exe' : 'win-x64-exe'
26+
, 'headers' : 'headers'
2727
}
2828

2929

0 commit comments

Comments
 (0)