Browse Source

Don't duplicate shims in PATH

pull/360/head^2
Tim Pope 11 years ago
committed by Mislav Marohnić
parent
commit
03fa148e81
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libexec/rbenv-init

+ 3
- 1
libexec/rbenv-init View File

@ -73,7 +73,9 @@ fi
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
bash | zsh )

Loading…
Cancel
Save