소스 검색

Add init command

pull/360/head^2
Joshua Peek 15 년 전
부모
커밋
df61a76ab0
1개의 변경된 파일31개의 추가작업 그리고 0개의 파일을 삭제
  1. +31
    -0
      libexec/rbenv-init

+ 31
- 0
libexec/rbenv-init 파일 보기

@ -0,0 +1,31 @@
#!/usr/bin/env bash -e
shell=$1
if [ -z "$shell" ]; then
shell=$(basename $SHELL)
fi
abs_dirname() {
local cwd="$(pwd)"
local path="$1"
while [ -n "$path" ]; do
cd "${path%/*}"
local name="${path##*/}"
path="$(readlink "$name" || true)"
done
pwd
cd "$cwd"
}
root="$(abs_dirname "$0")/.."
if [ -d "$HOME/.rbenv/shims" ]; then
rbenv-rehash
echo 'PATH="$HOME/.rbenv/shims:$PATH"'
fi
if [ "$shell" = "bash" ]; then
echo "source $root/completions/rbenv.bash"
fi

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