Merge pull request #274 from evocateur/patch-1

Avoid error from aliased `which` during install
master
Jordan Harband 2013-07-31 13:55:15 -07:00
commit af105894d7
1 changed files with 1 additions and 1 deletions

2
nvm.sh
View File

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