mirror of
https://github.com/rbenv/rbenv.git
synced 2025-01-01 14:45:03 +01:00
Bare rbenv init
prints a message; rbenv init -
prints the init script
This commit is contained in:
parent
00b8b4db33
commit
4ee92fca43
1 changed files with 32 additions and 3 deletions
|
@ -1,9 +1,14 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
shell=$1
|
print=""
|
||||||
|
if [ "$1" = "-" ]; then
|
||||||
|
print=1
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
shell="$1"
|
||||||
if [ -z "$shell" ]; then
|
if [ -z "$shell" ]; then
|
||||||
shell=$(basename $SHELL)
|
shell="$(basename "$SHELL")"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
abs_dirname() {
|
abs_dirname() {
|
||||||
|
@ -19,9 +24,33 @@ abs_dirname() {
|
||||||
pwd
|
pwd
|
||||||
cd "$cwd"
|
cd "$cwd"
|
||||||
}
|
}
|
||||||
|
|
||||||
root="$(abs_dirname "$0")/.."
|
root="$(abs_dirname "$0")/.."
|
||||||
|
|
||||||
echo 'export PATH="$HOME/.rbenv/shims:$PATH"'
|
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
|
||||||
|
|
||||||
|
echo 'export PATH="${HOME}/.rbenv/shims:${PATH}"'
|
||||||
|
|
||||||
if [ "$shell" = "bash" ]; then
|
if [ "$shell" = "bash" ]; then
|
||||||
echo "source \"$root/completions/rbenv.bash\""
|
echo "source \"$root/completions/rbenv.bash\""
|
||||||
|
|
Loading…
Reference in a new issue