Making ARM stop downloading x86 binaries

master
Joel Wietelmann 2012-10-18 21:19:08 +00:00
parent 5977a02e8b
commit 182e28f1ae
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 # Try to figure out the os and arch for binary fetching
uname="$(uname -a)" uname="$(uname -a)"
os= os=
arch=x86 arch="$(uname -m)"
case "$uname" in case "$uname" in
Linux\ *) os=linux ;; Linux\ *) os=linux ;;
Darwin\ *) os=darwin ;; Darwin\ *) os=darwin ;;