mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
31fab8cdae
Use process subtitution syntax: . (rbenv init -|psub) instead of: eval (rbenv init -) because the latter doesn't work well with newlines.
25 lines
428 B
Bash
Executable file
25 lines
428 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
# Provide rbenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
exec rbenv-rehash --complete
|
|
fi
|
|
|
|
shell="$(basename "$SHELL")"
|
|
|
|
# When rbenv shell integration is enabled, delegate to rbenv-rehash,
|
|
# then tell the shell to empty its command lookup cache.
|
|
rbenv-rehash
|
|
|
|
case "$shell" in
|
|
fish )
|
|
or='; or'
|
|
;;
|
|
* )
|
|
or='||'
|
|
;;
|
|
esac
|
|
|
|
echo "hash -r 2>/dev/null $or true"
|