mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Prevent $command from leaking outside of function
This commit is contained in:
parent
e899f1d31c
commit
9c43fa9161
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ commands=(`rbenv commands --sh`)
|
|||
IFS="|"
|
||||
cat <<EOS
|
||||
rbenv() {
|
||||
command="\$1"
|
||||
local command="\$1"
|
||||
if [ "\$#" -gt 0 ]; then
|
||||
shift
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue