Skip to content

Commit

Permalink
Use the original ls instead of aliases.
Browse files Browse the repository at this point in the history
Fixes #755
  • Loading branch information
ljharb committed May 29, 2015
1 parent a539cba commit 4c475b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bash_completion
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ __nvm_aliases ()
declare aliases
aliases=""
if [ -d $NVM_DIR/alias ]; then
aliases="`cd $NVM_DIR/alias && ls`"
aliases="`cd $NVM_DIR/alias && command ls`"
fi
echo "${aliases}"
}
Expand Down

0 comments on commit 4c475b2

Please sign in to comment.