2011-08-02 20:41:03 -04:00
|
|
|
#!/usr/bin/env bash -e
|
2011-08-02 19:01:46 -04:00
|
|
|
|
|
|
|
abs_dirname() {
|
2011-08-03 00:05:24 -04:00
|
|
|
local cwd="$(pwd)"
|
|
|
|
local path="$1"
|
|
|
|
|
2011-08-02 19:01:46 -04:00
|
|
|
while [ -n "$path" ]; do
|
2011-08-03 00:05:24 -04:00
|
|
|
cd "$(dirname "$path")"
|
|
|
|
local name="$(basename "$path")"
|
|
|
|
path="$(readlink "$name" || true)"
|
2011-08-02 19:01:46 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
pwd
|
2011-08-03 00:05:24 -04:00
|
|
|
cd "$cwd"
|
2011-08-02 19:01:46 -04:00
|
|
|
}
|
|
|
|
|
2011-08-03 00:05:24 -04:00
|
|
|
libexec_path="$(abs_dirname "$0")"
|
|
|
|
export PATH="${libexec_path}:${PATH}"
|
2011-08-02 19:01:46 -04:00
|
|
|
|
|
|
|
command="$1"
|
|
|
|
if [ -z "$command" ]; then
|
|
|
|
echo "rbenv 0.1.0" >&2
|
|
|
|
|
|
|
|
else
|
|
|
|
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" "$@"
|
|
|
|
fi
|