1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 11:33:49 -05:00

Merge pull request #13 from sstephenson/init

init command
This commit is contained in:
Joshua Peek
2011-08-03 21:26:58 -07:00

30
libexec/rbenv-init Executable file
View File

@@ -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