mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
18 lines
290 B
Bash
Executable file
18 lines
290 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
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
|