Add Arch Linux configuration for node module

This commit is contained in:
Ian Ker-Seymer 2015-04-14 17:22:26 -06:00
parent c98da90662
commit 9338719ba1

View file

@ -9,11 +9,15 @@
# Load manually installed NVM into the shell session.
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
source "$HOME/.nvm/nvm.sh"
# Load package manager installed NVM into the shell session.
# OSX: Homebrew
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
source $(brew --prefix nvm)/nvm.sh
# Arch Linux: Pacman
elif [[ -s "/usr/share/nvm/nvm.sh" ]]; then
source "/usr/share/nvm/nvm.sh"
# Return if requirements are not found.
elif (( ! $+commands[node] )); then
return 1