Set PYENV_BIN_PATH in PATH even if the version is system (fixes #98)

This commit is contained in:
Yamashita Yuu 2014-01-10 09:07:49 +09:00
parent 07ae0d8e42
commit 314937d599

View file

@ -41,7 +41,7 @@ for script in "${scripts[@]}"; do
done done
shift 1 shift 1
if [ "$PYENV_VERSION" != "system" ]; then # CPython's `sys.executable` requires the `PYENV_BIN_PATH` to be at the top of the `PATH`.
export PATH="${PYENV_BIN_PATH}:${PATH}" # https://github.com/yyuu/pyenv/issues/98
fi export PATH="${PYENV_BIN_PATH}:${PATH}"
exec -a "$PYENV_COMMAND" "$PYENV_COMMAND_PATH" "$@" exec -a "$PYENV_COMMAND" "$PYENV_COMMAND_PATH" "$@"