pyenv/libexec/pyenv-exec

49 lines
1.1 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
#
2013-01-18 03:41:41 -05:00
# Summary: Run an executable with the selected Python version
#
# Usage: pyenv exec <command> [arg1 arg2...]
#
# Runs an executable by first preparing PATH so that the selected Python
# version's `bin' directory is at the front.
#
2014-01-02 08:26:22 -05:00
# For example, if the currently selected Python version is 2.7.6:
2013-01-18 03:41:41 -05:00
# pyenv exec pip install -rrequirements.txt
#
# is equivalent to:
2014-01-02 08:26:22 -05:00
# PATH="$PYENV_ROOT/versions/2.7.6/bin:$PATH" pip install -rrequirements.txt
2013-01-18 03:41:41 -05:00
set -e
[ -n "$PYENV_DEBUG" ] && set -x
# Provide pyenv completions
if [ "$1" = "--complete" ]; then
exec pyenv-shims --short
fi
2014-01-02 08:26:22 -05:00
PYENV_VERSION="$(pyenv-version-name)"
PYENV_COMMAND="$1"
2013-01-18 03:41:41 -05:00
if [ -z "$PYENV_COMMAND" ]; then
2013-01-18 03:41:41 -05:00
pyenv-help --usage exec >&2
exit 1
fi
2014-01-02 08:26:22 -05:00
export PYENV_VERSION
PYENV_COMMAND_PATH="$(pyenv-which "$PYENV_COMMAND")"
PYENV_BIN_PATH="${PYENV_COMMAND_PATH%/*}"
2014-01-02 08:26:22 -05:00
OLDIFS="$IFS"
2014-01-02 08:49:23 -05:00
IFS=$'\n' scripts=(`pyenv-hooks exec`)
2014-01-02 08:26:22 -05:00
IFS="$OLDIFS"
for script in "${scripts[@]}"; do
source "$script"
done
shift 1
if [ "${PYENV_BIN_PATH#${PYENV_ROOT}}" != "${PYENV_BIN_PATH}" ]; then
# Only add to $PATH for non-system version.
export PATH="${PYENV_BIN_PATH}:${PATH}"
fi
exec "$PYENV_COMMAND_PATH" "$@"