mirror of
https://github.com/tedkulp/dotfiles
synced 2026-03-28 18:24:21 -04:00
8 lines
253 B
Bash
8 lines
253 B
Bash
if [[ -d $HOME/.nvm ]]; then
|
|
[ -s $HOME/.nvm/nvm.sh ] && . $HOME/.nvm/nvm.sh # This loads NVM
|
|
else
|
|
echo "You don't have nvm installed. Get at it, buddy!"
|
|
echo "hint: curl https://raw.github.com/creationix/nvm/master/install.sh | sh"
|
|
echo ""
|
|
fi
|