Make node-info work without nvm/nodenv

This commit is contained in:
Michael Kohl 2018-07-18 15:08:21 +07:00 committed by Indrajit Raychaudhuri
parent 152b4a1b5d
commit e064d5c65f

View file

@ -19,6 +19,8 @@ if (( $+functions[nvm_version] )); then
version="${$(nvm_version)#v}"
elif (( $+commands[nodenv] )); then
version="${${$(nodenv version)#v}[(w)0]}"
elif (( $+commands[node] )) ; then
version="${$(node -v)#v}"
fi
if [[ "$version" != (none|) ]]; then