Make sure that $ARGS is evaluated natively rather than as a single string argument.

Fixes #494.
master
Jordan Harband 2014-08-08 11:48:13 -07:00
parent abdc3f3c21
commit 99c8b59a14
1 changed files with 1 additions and 1 deletions

2
nvm.sh
View File

@ -23,7 +23,7 @@ nvm_download() {
-e 's/-s /-q /' \
-e 's/-o /-O /' \
-e 's/-C - /-c /')
wget $ARGS
eval wget $ARGS
fi
}