mirror of https://github.com/jenv/jenv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
402 B
17 lines
402 B
#!/usr/bin/env bash |
|
# Usage: jenv completions <command> [arg1 arg2...] |
|
|
|
set -e |
|
[ -n "$JENV_DEBUG" ] && set -x |
|
|
|
COMMAND="$1" |
|
if [ -z "$COMMAND" ]; then |
|
jenv-help --usage completions >&2 |
|
exit 1 |
|
fi |
|
|
|
COMMAND_PATH="$(command -v "jenv-$COMMAND" || command -v "jenv-sh-$COMMAND")" |
|
if grep -i "^# provide jenv completions" "$COMMAND_PATH" >/dev/null; then |
|
shift |
|
exec "$COMMAND_PATH" --complete "$@" |
|
fi
|
|
|