Skip to content

Commit

Permalink
Merge pull request #72 from kit494way/fix-pyenv-root
Browse files Browse the repository at this point in the history
Don't override PYENV_ROOT if it is set
  • Loading branch information
rahulrajaram authored Mar 16, 2020
2 parents d8440a2 + b8e3aa5 commit 102025c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bundled_installer
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# - the latest (or close to it) Python
# - the latest version of the EBCLI
export PYTHON_VERSION="3.7.2"
export PYENV_ROOT="$HOME/.pyenv"
export PYENV_ROOT=${PYENV_ROOT:-"$HOME/.pyenv"}
export PYENV_BIN="$PYENV_ROOT/versions/$PYTHON_VERSION/bin"
BASH_PROFILE="$HOME/.bash_profile"
ZSHENV="$HOME/.zshrc"
Expand Down

0 comments on commit 102025c

Please sign in to comment.