From 455e27b851d4a7413356cfb69344595e9154d73d Mon Sep 17 00:00:00 2001 From: pztrn Date: Tue, 12 May 2015 23:18:52 +0500 Subject: [PATCH] Fix PyENV nt working due to missing export. --- zsh/exports/95-pyenv.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/exports/95-pyenv.zsh b/zsh/exports/95-pyenv.zsh index f578aa6..d878ec0 100644 --- a/zsh/exports/95-pyenv.zsh +++ b/zsh/exports/95-pyenv.zsh @@ -5,5 +5,6 @@ if [ "${USE_PYENV}" -eq 0 ]; then return fi +export PYENV_ROOT="${PYENV_PATH}" export PATH="${PYENV_PATH}/bin:$PATH" -eval "$(pyenv init -)" \ No newline at end of file +eval "$(pyenv init -)"