You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Set NVM_DIR if it isn't already defined |
|
[[ -z "$NVM_DIR" ]] && export NVM_DIR="$HOME/.nvm" |
|
|
|
# Try to load nvm only if command not already available |
|
if ! type "nvm" &> /dev/null; then |
|
# Load nvm if it exists |
|
[[ -f "$NVM_DIR/nvm.sh" ]] && source "$NVM_DIR/nvm.sh" |
|
fi
|
|
|