2012-12-28 11:59:10 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
|
|
|
|
# Provide rbenv completions
|
|
|
|
if [ "$1" = "--complete" ]; then
|
|
|
|
exec rbenv-rehash --complete
|
|
|
|
fi
|
|
|
|
|
2013-08-15 10:01:13 -04:00
|
|
|
shell="$(basename "$SHELL")"
|
|
|
|
|
2012-12-28 11:59:10 -05:00
|
|
|
# When rbenv shell integration is enabled, delegate to rbenv-rehash,
|
|
|
|
# then tell the shell to empty its command lookup cache.
|
|
|
|
rbenv-rehash
|
2013-08-15 10:01:13 -04:00
|
|
|
|
|
|
|
case "$shell" in
|
|
|
|
fish )
|
2013-09-28 09:04:24 -04:00
|
|
|
or='; or'
|
2013-08-15 10:01:13 -04:00
|
|
|
;;
|
|
|
|
* )
|
2013-09-28 09:04:24 -04:00
|
|
|
or='||'
|
2013-08-15 10:01:13 -04:00
|
|
|
;;
|
|
|
|
esac
|
2013-09-28 09:04:24 -04:00
|
|
|
|
|
|
|
echo "hash -r 2>/dev/null $or true"
|