Skip to content

Commit

Permalink
completion: add LTS aliases.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jul 19, 2016
1 parent 28822ff commit fb49bf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bash_completion
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ __nvm_aliases ()
declare aliases
aliases=""
if [ -d $NVM_DIR/alias ]; then
aliases="`cd $NVM_DIR/alias && command ls`"
aliases="$(cd $NVM_DIR/alias && find $PWD -type f | sed "s:$PWD/::")"
fi
echo "${aliases}"
echo "${aliases} node stable unstable iojs"
}

__nvm_alias ()
Expand Down

0 comments on commit fb49bf6

Please sign in to comment.