mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Don't duplicate shims in PATH
This commit is contained in:
parent
ea3203dbab
commit
03fa148e81
1 changed files with 3 additions and 1 deletions
|
@ -73,7 +73,9 @@ fi
|
||||||
|
|
||||||
mkdir -p "${RBENV_ROOT}/"{shims,versions}
|
mkdir -p "${RBENV_ROOT}/"{shims,versions}
|
||||||
|
|
||||||
echo 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
|
if [[ ":${PATH}:" != *:"${RBENV_ROOT}/shims":* ]]; then
|
||||||
|
echo 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
|
||||||
|
fi
|
||||||
|
|
||||||
case "$shell" in
|
case "$shell" in
|
||||||
bash | zsh )
|
bash | zsh )
|
||||||
|
|
Loading…
Reference in a new issue