Filter out the io.js version dir from nvm_ls output.

Fixes #642.
master
Jordan Harband 2015-02-02 17:07:16 -08:00
parent 0b4c1e14cf
commit 2116d2ff91
2 changed files with 8 additions and 0 deletions

1
nvm.sh
View File

@ -541,6 +541,7 @@ nvm_ls() {
fi
VERSIONS="$(command find $NVM_DIRS_TO_SEARCH -maxdepth 1 -type d -name "$PATTERN*" \
| command sed "s#$(nvm_version_dir iojs)/#"$(nvm_iojs_prefix)"-#" \
| command grep -v "$(nvm_version_dir iojs)" \
| command sed "s#^$NVM_DIR/##" \
| command grep -v -e '^versions$' \
| command sed 's#^versions/##' \

View File

@ -0,0 +1,7 @@
#!/bin/sh
. ../../../nvm.sh
nvm ls io
[ "$?" = "3" ]