mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
6938692ca2
/usr/bin/env seems to have problems with arguments to bash on some platforms. To bypass this, use set -e instead.
23 lines
527 B
Bash
Executable file
23 lines
527 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
RBENV_COMMAND="$1"
|
|
if [ -z "$RBENV_COMMAND" ]; then
|
|
echo "usage: rbenv exec COMMAND [arg1 arg2...]" >&2
|
|
exit 1
|
|
fi
|
|
|
|
RBENV_COMMAND_PATH="$(rbenv-which "$RBENV_COMMAND")"
|
|
RBENV_BIN_PATH="${RBENV_COMMAND_PATH%/*}"
|
|
|
|
shopt -s nullglob
|
|
RBENV_EXEC_PLUGINS=(/etc/rbenv.d/exec/*.bash ${HOME}/.rbenv/rbenv.d/exec/*.bash)
|
|
shopt -u nullglob
|
|
|
|
for script in ${RBENV_EXEC_PLUGINS[@]}; do
|
|
source $script
|
|
done
|
|
|
|
shift 1
|
|
export PATH="${RBENV_BIN_PATH}:${PATH}"
|
|
exec -a "$RBENV_COMMAND" "$RBENV_COMMAND_PATH" "$@"
|