pyenv/libexec/rbenv

37 lines
614 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
2011-08-02 18:01:46 -05:00
abs_dirname() {
2011-08-02 23:05:24 -05:00
local cwd="$(pwd)"
local path="$1"
2011-08-02 18:01:46 -05:00
while [ -n "$path" ]; do
cd "${path%/*}"
local name="${path##*/}"
2011-08-02 23:05:24 -05:00
path="$(readlink "$name" || true)"
2011-08-02 18:01:46 -05:00
done
pwd
2011-08-02 23:05:24 -05:00
cd "$cwd"
2011-08-02 18:01:46 -05:00
}
2011-08-02 23:05:24 -05:00
libexec_path="$(abs_dirname "$0")"
export PATH="${libexec_path}:${PATH}"
2011-08-02 18:01:46 -05:00
command="$1"
2011-08-14 13:51:51 -05:00
case "$command" in
"" | "-h" | "--help" )
2011-08-16 00:16:17 -05:00
echo -e "rbenv 0.1.2\n$(rbenv-help)" >&2
;;
2011-08-14 13:51:51 -05:00
* )
2011-08-02 18:01:46 -05:00
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