pyenv/libexec
Mislav Marohnić 5ae2cac088 fix rbenv() function in ksh and dash
ksh syntax becomes:

    function rbenv {
      typeset command

`typeset` only declares a local variable if there's an explicit
`function` declaration; otherwise the variable leaks.

Other shells use this syntax:

    rbenv() {
      local command

This is for dash compatibility, which supports neither `function` nor
`typeset`.

references #205, fixes #408
2013-09-28 16:12:53 +02:00
..
rbenv bail out early if readlink is not available 2013-06-07 19:16:38 +02:00
rbenv---version
rbenv-commands fix iterating through paths that have spaces in them 2013-04-01 01:04:19 +02:00
rbenv-completions improve detection of completion support for commands 2013-04-01 16:39:51 +02:00
rbenv-exec restore original IFS for hooks 2013-04-16 14:01:43 +02:00
rbenv-global
rbenv-help
rbenv-hooks bail out early if readlink is not available 2013-06-07 19:16:38 +02:00
rbenv-init fix rbenv() function in ksh and dash 2013-09-28 16:12:53 +02:00
rbenv-local add tests for version commands 2013-04-08 23:16:35 +02:00
rbenv-prefix
rbenv-rehash fix rehash when paths have spaces in them 2013-09-26 01:42:34 +02:00
rbenv-root
rbenv-sh-rehash cleanup in fish 2013-09-28 16:12:43 +02:00
rbenv-sh-shell add fish shell support 2013-09-28 16:11:02 +02:00
rbenv-shims
rbenv-version
rbenv-version-file
rbenv-version-file-read
rbenv-version-file-write
rbenv-version-name
rbenv-version-origin
rbenv-versions
rbenv-whence
rbenv-which restore original IFS for hooks 2013-04-16 14:01:43 +02:00