Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix package.json cpu for node-linux-ppc64le (#186)
Node.js defines `process.arch` as `ppc64` for both obsolete BE and current LE systems. This currently prevents node-linux-ppc64le from being installable: $ npm i node-linux-ppc64le npm ERR! code EBADPLATFORM npm ERR! notsup Unsupported platform for node-linux-ppc64le@19.1.0: wanted {"os":"linux","arch":"ppc64le"} (current: {"os":"linux","arch":"ppc64"}) npm ERR! notsup Valid OS: linux npm ERR! notsup Valid Arch: ppc64le npm ERR! notsup Actual OS: linux npm ERR! notsup Actual Arch: ppc64
- Loading branch information