Explorar el Código

Merge pull request #13 from sstephenson/init

init command
pull/360/head^2
Joshua Peek hace 13 años
padre
commit
4714b5bd4e
Se han modificado 1 ficheros con 30 adiciones y 0 borrados
  1. +30
    -0
      libexec/rbenv-init

+ 30
- 0
libexec/rbenv-init Ver fichero

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

Cargando…
Cancelar
Guardar