Browse Source

use `typeset` instead of `local` in rbenv() function

This is to insure portability to ksh.

Fixes #205, references #209
pull/360/head^2
Mislav Marohnić 11 years ago
parent
commit
3060578e3b
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libexec/rbenv-init

+ 2
- 1
libexec/rbenv-init View File

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

Loading…
Cancel
Save