Browse Source

Merge pull request #274 from evocateur/patch-1

Avoid error from aliased `which` during install
master
Jordan Harband 12 years ago
parent
commit
af105894d7
  1. 2
      nvm.sh

2
nvm.sh

@ -201,7 +201,7 @@ nvm() {
local shasum='shasum' local shasum='shasum'
local nobinary local nobinary
if [ ! `which curl` ]; then if [ ! `\which curl` ]; then
echo 'NVM Needs curl to proceed.' >&2; echo 'NVM Needs curl to proceed.' >&2;
fi fi

Loading…
Cancel
Save