pyenv/libexec/rbenv-init

29 lines
450 B
Text
Raw Normal View History

2011-08-04 00:16:28 -04:00
#!/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"'
2011-08-04 00:16:28 -04:00
if [ "$shell" = "bash" ]; then
2011-08-04 00:20:19 -04:00
echo "source \"$root/completions/rbenv.bash\""
2011-08-04 00:16:28 -04:00
fi