mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
7 lines
266 B
Bash
7 lines
266 B
Bash
# The addition 'nvm install' attempts in ~/.profile
|
|
|
|
if [ -f $HOME/.nvm/nvm.sh ]; then # manual user-local installation
|
|
. ~/.nvm/nvm.sh
|
|
elif [ $commands[brew] -a -f `brew --prefix`/opt/nvm/nvm.sh ]; then # mac os x with brew
|
|
. $(brew --prefix)/opt/nvm/nvm.sh
|
|
fi
|