pyenv/libexec/rbenv
Andreas Johansson 6938692ca2 Fix argument that cannot be sent to bash via env
/usr/bin/env seems to have problems with arguments to bash on some
platforms. To bypass this, use set -e instead.
2011-08-12 11:33:45 +02:00

34 lines
589 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"
if [ -z "$command" ]; then
echo -e "rbenv 0.1.0\n$(rbenv-help)" >&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