Disable node-info output when value is system.

This makes the behavior consistent with rbenv and pyenv.
This commit is contained in:
Chris Ewald 2019-03-17 21:27:13 -04:00 committed by Indrajit Raychaudhuri
parent b8d7e2cad8
commit 1f4601e44c

View file

@ -23,7 +23,7 @@ elif (( $+commands[node] )) ; then
version="${$(node -v)#v}"
fi
if [[ "$version" != (none|) ]]; then
if [[ "$version" != (none|system) ]]; then
zstyle -s ':prezto:module:node:info:version' format 'version_format'
zformat -f version_formatted "$version_format" "v:$version"
node_info[version]="$version_formatted"