mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-15 06:43:53 -05:00
Initial commit
This commit is contained in:
18
bin/rbenv
Executable file
18
bin/rbenv
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user