Browse Source

Not exec specific

pull/360/head^2
Joshua Peek 13 years ago
parent
commit
2b5fb40b99
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libexec/rbenv-plugin-scripts

+ 2
- 2
libexec/rbenv-plugin-scripts View File

@ -11,9 +11,9 @@ if [ "$1" = "--complete" ]; then
fi
shopt -s nullglob
RBENV_EXEC_PLUGINS=(/etc/rbenv.d/$1/*.bash ${RBENV_ROOT}/rbenv.d/$1/*.bash)
SCRIPTS=(/etc/rbenv.d/$1/*.bash ${RBENV_ROOT}/rbenv.d/$1/*.bash)
shopt -u nullglob
for script in ${RBENV_EXEC_PLUGINS[@]}; do
for script in ${SCRIPTS[@]}; do
echo $script
done

Loading…
Cancel
Save