mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 15:46:17 -04:00
Not exec specific
This commit is contained in:
parent
96b98ed039
commit
2b5fb40b99
|
|
@ -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…
Reference in a new issue