Browse Source

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

Fixes #494.
master
Jordan Harband 11 years ago
parent
commit
99c8b59a14
  1. 2
      nvm.sh

2
nvm.sh

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

Loading…
Cancel
Save