Skip to content

Commit ee5dc73

Browse files
authored
postinstall: add arm64 as valid arch (#530)
Signed-off-by: Muvaffak Onus <me@muvaf.com>
1 parent 7e90a60 commit ee5dc73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

npm_publish/postinstall.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ var path = require('path'),
1212
var ARCH_MAPPING = {
1313
"ia32": "386",
1414
"x64": "amd64",
15-
"arm": "arm"
15+
"arm": "arm",
16+
"arm64": "arm64"
1617
};
1718

1819
// Mapping between Node's `process.platform` to Golang's

0 commit comments

Comments
 (0)