pyenv/libexec/rbenv-init

61 lines
903 B
Text
Raw Normal View History

#!/usr/bin/env bash
set -e
2011-08-04 00:16:28 -04:00
print=""
if [ "$1" = "-" ]; then
print=1
shift
fi
2011-08-04 00:16:28 -04:00
shell="$1"
2011-08-04 00:16:28 -04:00
if [ -z "$shell" ]; then
shell="$(basename "$SHELL")"
2011-08-04 00:16:28 -04: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-04 00:16:28 -04: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 02:16:16 -04:00
mkdir -p "${HOME}/.rbenv/"{shims,versions}
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