Installer pipelines masked dependency and download failures, causing false success messages and unsafe config replacement. Atomic updates and current upstream installers keep failures visible.
5 lines
222 B
Bash
5 lines
222 B
Bash
# Initialize pyenv (Python Version Manager)
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" # Add pyenv to PATH
|
|
command -v pyenv &> /dev/null && eval "$(pyenv init - zsh)"
|