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
I need to patch nvm.sh
case "$NVM_UNAME" in *x86_64*) NVM_ARCH=x64 ;; *i*86*) NVM_ARCH=x86 ;; *armv6l*) NVM_ARCH=arm-pi ;; *armv7l*) NVM_ARCH=arm-pi ;; # patched here *) NVM_ARCH="$(uname -m)" ;; esac
The text was updated successfully, but these errors were encountered:
You can do *armv61* | *armv71* if it's the same architecture.
*armv61* | *armv71*
Does that work equally well on all node and io.js versions? I'll happily accept a PR :-)
node
io.js
Sorry, something went wrong.
There are actually separate builds for armv6l and armv7l here in io.js v1.3.0 because they are different architectures.
armv6l
armv7l
Merge pull request #680 from sayanee/armv6l-armv7l-support
ceb66d1
fix: download url for iojs armv6l and armv7l. #678 #227
No branches or pull requests
I need to patch nvm.sh
The text was updated successfully, but these errors were encountered: