Skip to content

Commit 4583d62

Browse files
committed
fix: PATH update for non-fish shells
Checks PATH variable for existing inclusion of shims for shells other than fish. See PR #430
1 parent 2b2b87a commit 4583d62

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bin/pyenv-virtualenv-init

+2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ EOS
9595
;;
9696
* )
9797
cat <<EOS
98+
if [[ ":$PATH:" != *"${PYENV_VIRTUALENV_ROOT:-${PYENV_VIRTUALENV_INSTALL_PREFIX}}/shims"* ]]; then
9899
export PATH="${PYENV_VIRTUALENV_ROOT:-${PYENV_VIRTUALENV_INSTALL_PREFIX}}/shims:\${PATH}";
99100
export PYENV_VIRTUALENV_INIT=1;
101+
fi
100102
EOS
101103
;;
102104
esac

0 commit comments

Comments
 (0)