소스 검색

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

Fixes #119
pull/360/head^2
Sam Stephenson 11 년 전
부모
커밋
811ca05916
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      libexec/rbenv-sh-rehash

+ 13
- 0
libexec/rbenv-sh-rehash 파일 보기

@ -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"

불러오는 중...
취소
저장