Add check for git to install script.

master
Dennis Dryden 2013-06-07 23:42:28 +01:00 committed by Dennis Dryden
parent db3035c29b
commit 34a067647c
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,12 @@
NVM_DIR="$HOME/.nvm" NVM_DIR="$HOME/.nvm"
if ! hash git 2>/dev/null; then
echo >&2 "You need to install git."
echo >&2 "Visit http://git-scm.com/downloads"
exit 1
fi
if [ -d "$NVM_DIR" ]; then if [ -d "$NVM_DIR" ]; then
echo "=> NVM is already installed in $NVM_DIR, trying to update" echo "=> NVM is already installed in $NVM_DIR, trying to update"
echo -ne "\r=> " echo -ne "\r=> "