1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 21:13:46 -05:00

Merge pull request #189 from amarshall/master

Prevent $command from leaking outside of function
This commit is contained in:
Sam Stephenson
2012-02-18 08:52:12 -08:00

View File

@@ -86,7 +86,7 @@ commands=(`rbenv commands --sh`)
IFS="|"
cat <<EOS
rbenv() {
command="\$1"
local command="\$1"
if [ "\$#" -gt 0 ]; then
shift
fi