mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
14 lines
310 B
Text
14 lines
310 B
Text
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
[ -n "$RBENV_DEBUG" ] && set -x
|
||
|
|
||
|
# Provide rbenv completions
|
||
|
if [ "$1" = "--complete" ]; then
|
||
|
exec rbenv-rehash --complete
|
||
|
fi
|
||
|
|
||
|
# When rbenv shell integration is enabled, delegate to rbenv-rehash,
|
||
|
# then tell the shell to empty its command lookup cache.
|
||
|
rbenv-rehash
|
||
|
echo "hash -r"
|