Run hash -r after rbenv rehash when shell integration is enabled

Fixes #119
This commit is contained in:
Sam Stephenson 2012-12-28 10:59:10 -06:00
parent df9bbd7ab3
commit 811ca05916

13
libexec/rbenv-sh-rehash Executable file
View file

@ -0,0 +1,13 @@
#!/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"