From aaa87063a27cd581b5f0fa1f23a0170f623686a9 Mon Sep 17 00:00:00 2001 From: Vlad Dmitrievich <2tunnels@gmail.com> Date: Wed, 15 Jan 2020 15:08:45 +0200 Subject: [PATCH] pyenv: only run if pyenv not in $PATH (#8462) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is needed if in between the update of `$PATH` the `$commands` parameter hasn't been updated, i.e. if there was no `rehash` or `hash -rf` or automatic rehash. Co-authored-by: Marc Cornellà --- plugins/pyenv/pyenv.plugin.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/pyenv/pyenv.plugin.zsh b/plugins/pyenv/pyenv.plugin.zsh index 40e58b5c2..4c75156bd 100644 --- a/plugins/pyenv/pyenv.plugin.zsh +++ b/plugins/pyenv/pyenv.plugin.zsh @@ -1,7 +1,8 @@ # This plugin loads pyenv into the current shell and provides prompt info via # the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available. -FOUND_PYENV=$+commands[pyenv] +# Load pyenv only if command not already available +command -v pyenv &> /dev/null && FOUND_PYENV=1 || FOUND_PYENV=0 if [[ $FOUND_PYENV -ne 1 ]]; then pyenvdirs=("$HOME/.pyenv" "/usr/local/pyenv" "/opt/pyenv" "/usr/local/opt/pyenv")