Browse Source

[Fix #777] Check for nvm or node

master
Sorin Ionescu 9 years ago
parent
commit
1292587f95
  1. 5
      modules/node/init.zsh

5
modules/node/init.zsh

@ -6,6 +6,11 @@ @@ -6,6 +6,11 @@
# Zeh Rizzatti <zehrizzatti@gmail.com>
#
# Return if requirements are not found.
if (( ! $+commands[nvm] || ! $+commands[node] )); then
return 1
fi
# Load manually installed NVM into the shell session.
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
source "$HOME/.nvm/nvm.sh"

Loading…
Cancel
Save