mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
10 lines
204 B
Bash
10 lines
204 B
Bash
#! bash oh-my-bash.module
|
|
# @chopnico 2021
|
|
|
|
if [ -d ~/.pyenv ]; then
|
|
export PYENV_ROOT=~/.pyenv
|
|
export PATH=$PYENV_ROOT/bin${PATH:+:$PATH}
|
|
eval -- "$(pyenv init --path)"
|
|
eval -- "$(pyenv init -)"
|
|
fi
|