mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-03 09:53:15 -05:00
41580b69db
Ignore shell builtins and functions when looking up commands in PATH
26 lines
553 B
Bash
Executable file
26 lines
553 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Usage: rbenv completions <command> [<args>...]
|
|
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
COMMAND="$1"
|
|
if [ -z "$COMMAND" ]; then
|
|
rbenv-help --usage completions >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Provide rbenv completions
|
|
if [ "$COMMAND" = "--complete" ]; then
|
|
exec rbenv-commands
|
|
fi
|
|
|
|
COMMAND_PATH="$(type -P "rbenv-$COMMAND" "rbenv-sh-$COMMAND" | head -n1)"
|
|
|
|
# --help is provided automatically
|
|
echo --help
|
|
|
|
if grep -iE "^([#%]|--|//) provide rbenv completions" "$COMMAND_PATH" >/dev/null; then
|
|
shift
|
|
exec "$COMMAND_PATH" --complete "$@"
|
|
fi
|