Browse Source

Stop showing `version not installed` in precmd (#49)

pull/138/head
Yamashita, Yuu 8 years ago
parent
commit
9414a6bb30
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/pyenv-sh-activate

+ 1
- 1
bin/pyenv-sh-activate View File

@ -61,7 +61,7 @@ versions=("$@")
if [ -z "${versions}" ]; then
no_shell=1
OLDIFS="$IFS"
IFS=: versions=($(pyenv-version-name))
IFS=: versions=($(pyenv-version-name 2>/dev/null))
IFS="$OLDIFS"
fi

Loading…
Cancel
Save