Fix node-info to show right node version

Currently, node-info shows nothing if $version is different than 'none'.
This commit is contained in:
Linh M. Tran 2014-10-19 17:21:54 +07:00
parent 17a6124b43
commit d020d34e59
1 changed files with 1 additions and 1 deletions

View File

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