pyenv/pyenv.d/exec/pip-rehash/pip

32 lines
752 B
Text
Raw Normal View History

#!/usr/bin/env bash
2014-12-01 08:34:02 -05:00
set -e
[ -n "$PYENV_DEBUG" ] && set -x
# Remove pyenv-pip-rehash/libexec from PATH to avoid infinite loops in `pyenv-which` (yyuu/pyenv#146)
_PATH=":${PATH}:"
_HERE="$(dirname "${BASH_SOURCE[0]}")" # remove this from PATH
_PATH="${_PATH//:${_HERE}:/:}"
_PATH="${_PATH#:}"
_PATH="${_PATH%:}"
PATH="${_PATH}"
PYENV_COMMAND_PATH="$(pyenv-which "${PYENV_REHASH_REAL_COMMAND}")"
2014-12-01 08:34:02 -05:00
PYENV_BIN_PATH="${PYENV_COMMAND_PATH%/*}"
export PATH="${PYENV_BIN_PATH}:${PATH}"
STATUS=0
"$PYENV_COMMAND_PATH" "$@" || STATUS="$?"
# Run `pyenv-rehash` after a successful installation.
if [ "$STATUS" == "0" ]; then
for piparg in "$@"; do
case ${piparg} in
2017-05-09 06:50:46 -04:00
"install" | "uninstall" ) pyenv-rehash ; break;;
esac
done
fi
2017-05-09 06:51:50 -04:00
exit "$STATUS"