pyenv/libexec/rbenv-init

63 lines
936 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
2011-08-03 23:16:28 -05:00
print=""
if [ "$1" = "-" ]; then
print=1
shift
fi
2011-08-03 23:16:28 -05:00
shell="$1"
2011-08-03 23:16:28 -05:00
if [ -z "$shell" ]; then
shell="$(basename "$SHELL")"
2011-08-03 23:16:28 -05:00
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"
}
2011-08-03 23:16:28 -05:00
root="$(abs_dirname "$0")/.."
if [ -z "$print" ]; then
case "$shell" in
bash )
profile='~/.bash_profile'
;;
zsh )
profile='~/.zshrc'
;;
* )
profile='your profile'
;;
esac
{ echo "# Load rbenv automatically by adding"
echo "# the following to ${profile}:"
echo
echo 'eval "$(rbenv init -)"'
echo
} >&2
exit 1
fi
2011-08-04 01:16:16 -05:00
mkdir -p "${HOME}/.rbenv/"{shims,versions}
echo 'export PATH="${HOME}/.rbenv/shims:${PATH}"'
2011-08-03 23:16:28 -05:00
if [ "$shell" = "bash" ]; then
2011-08-03 23:20:19 -05:00
echo "source \"$root/completions/rbenv.bash\""
2011-08-03 23:16:28 -05:00
fi
2011-08-15 01:18:04 -05:00
echo 'rbenv rehash 2>/dev/null'