pyenv/libexec/rbenv
Sam Stephenson bd1e56ff37 rbenv 0.1.1
2011-08-14 13:51:51 -05:00

36 lines
614 B
Bash
Executable file

#!/usr/bin/env bash
set -e
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"
}
libexec_path="$(abs_dirname "$0")"
export PATH="${libexec_path}:${PATH}"
command="$1"
case "$command" in
"" | "-h" | "--help" )
echo -e "rbenv 0.1.1\n$(rbenv-help)" >&2
;;
* )
command_path="$(command -v "rbenv-$command" || true)"
if [ -z "$command_path" ]; then
echo "rbenv: no such command \`$command'" >&2
exit 1
fi
shift 1
exec "$command_path" "$@"
;;
esac