Merge pull request #370 from jpadilla/patch-1

Detect if curl or wget is installed to download NVM_SOURCE
master
Jordan Harband 2014-03-13 14:26:44 -07:00
commit 192e381971
1 changed files with 18 additions and 9 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
function fatalExit (){
fatalExit (){
echo "$@" && exit 1;
}
@ -17,7 +17,16 @@ fi
mkdir -p "$NVM_DIR"
pushd "$NVM_DIR" > /dev/null
echo -ne "=> Downloading... "
curl --silent "$NVM_SOURCE" -o nvm.sh || fatalExit "Failed";
# Detect if curl or wget is installed to download NVM_SOURCE
if type curl > /dev/null 2>&1; then
curl --silent "$NVM_SOURCE" -o nvm.sh || fatalExit "Failed";
elif type wget > /dev/null 2>&1; then
wget --quiet "$NVM_SOURCE" -O nvm.sh || fatalExit "Failed";
else
fatalExit "Must have curl or wget to install nvm";
fi
echo "Downloaded"
popd > /dev/null