pyenv/bin/rbenv

17 lines
285 B
Text
Raw Normal View History

2011-08-02 18:43:43 -04:00
#!/bin/bash -e
2011-08-01 16:50:26 -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
2011-08-02 13:21:09 -04:00
exec "$command_path" "$@"
2011-08-01 16:50:26 -04:00
fi