pyenv/libexec/rbenv-init

28 lines
450 B
Bash
Executable file

#!/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")/.."
echo 'export PATH="$HOME/.rbenv/shims:$PATH"'
if [ "$shell" = "bash" ]; then
echo "source \"$root/completions/rbenv.bash\""
fi