pyenv/libexec/rbenv-sh-rehash
2013-09-28 16:11:02 +02:00

23 lines
424 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 )
# nothing to do
;;
* )
echo "hash -r 2>/dev/null || true"
;;
esac