pyenv/libexec/rbenv-completions

18 lines
408 B
Text
Raw Normal View History

2011-09-13 15:13:27 +00:00
#!/usr/bin/env bash
2012-12-30 04:05:04 +00:00
# Usage: rbenv completions <command> [arg1 arg2...]
2011-09-13 15:13:27 +00:00
set -e
[ -n "$RBENV_DEBUG" ] && set -x
COMMAND="$1"
if [ -z "$COMMAND" ]; then
rbenv-help --usage completions >&2
2011-09-13 15:13:27 +00:00
exit 1
fi
COMMAND_PATH="$(command -v "rbenv-$COMMAND" || command -v "rbenv-sh-$COMMAND")"
2011-09-13 15:13:27 +00:00
if grep -i "^# provide rbenv completions" "$COMMAND_PATH" >/dev/null; then
shift
exec "$COMMAND_PATH" --complete "$@"
fi