mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
Not exec specific
This commit is contained in:
parent
96b98ed039
commit
2b5fb40b99
1 changed files with 2 additions and 2 deletions
|
@ -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