Skip to content

Commit

Permalink
postinstall: add arm64 as valid arch (#530)
Browse files Browse the repository at this point in the history
Signed-off-by: Muvaffak Onus <[email protected]>
  • Loading branch information
muvaf authored Dec 9, 2024
1 parent 7e90a60 commit ee5dc73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion npm_publish/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ var path = require('path'),
var ARCH_MAPPING = {
"ia32": "386",
"x64": "amd64",
"arm": "arm"
"arm": "arm",
"arm64": "arm64"
};

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

0 comments on commit ee5dc73

Please sign in to comment.