We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We recently had a user on a Raspberry PI try to install the railway.app cli but it failed to find the correct binary for their arch: railwayapp/cli#94
From their posted issue, the error is: Installation is not supported for this architecture: arm64
Installation is not supported for this architecture: arm64
Upon first glance, it seems like their process.arch returns amd64, which is not listed in this map
process.arch
amd64
go-npm/src/index.js
Lines 13 to 18 in ff6d922
Thoughts on whether adding this would be okay? It looks like arm64 is valid for both Node and Go. https://nodejs.org/api/process.html#process_process_arch https://gist.github.com/asukakenji/f15ba7e588ac42795f421b48b8aede63#a-list-of-valid-goarch-values
arm64
The text was updated successfully, but these errors were encountered:
Same issue happens on the M1 Macs.
Sorry, something went wrong.
No branches or pull requests
We recently had a user on a Raspberry PI try to install the railway.app cli but it failed to find the correct binary for their arch: railwayapp/cli#94
From their posted issue, the error is:
Installation is not supported for this architecture: arm64
Upon first glance, it seems like their
process.arch
returnsamd64
, which is not listed in this mapgo-npm/src/index.js
Lines 13 to 18 in ff6d922
Thoughts on whether adding this would be okay? It looks like
arm64
is valid for both Node and Go.https://nodejs.org/api/process.html#process_process_arch
https://gist.github.com/asukakenji/f15ba7e588ac42795f421b48b8aede63#a-list-of-valid-goarch-values
The text was updated successfully, but these errors were encountered: