9 lines
182 B
Bash
9 lines
182 B
Bash
# PyENV exports.
|
|
|
|
# This exports should work only if config states this.
|
|
if [ "${USE_PYENV}" -eq 0 ]; then
|
|
return
|
|
fi
|
|
|
|
export PATH="${PYENV_PATH}/bin:$PATH"
|
|
eval "$(pyenv init -)" |