Merge pull request #155 from jwietelmann/master

NVM downloading x86 binaries instead of source for ARM Linux box
master
Tim Caswell 2012-10-18 14:42:55 -07:00
commit e1ec264b26
1 changed files with 1 additions and 1 deletions

2
nvm.sh
View File

@ -19,7 +19,7 @@ fi
# Try to figure out the os and arch for binary fetching
uname="$(uname -a)"
os=
arch=x86
arch="$(uname -m)"
case "$uname" in
Linux\ *) os=linux ;;
Darwin\ *) os=darwin ;;