浏览代码

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"

正在加载...
取消
保存