소스 검색

Add --bare option to `pyenv version`

It just points at pyenv version-name.  This adds consistency with the behavior
of `pyenv versions --bare`
pull/2783/head
Jesse Wattenbarger 1 년 전
부모
커밋
7f47b3121f
1개의 변경된 파일21개의 추가작업 그리고 3개의 파일을 삭제
  1. +21
    -3
      libexec/pyenv-version

+ 21
- 3
libexec/pyenv-version 파일 보기

@ -1,9 +1,10 @@
#!/usr/bin/env bash
# Summary: Show the current Python version(s) and its origin
# Usage: pyenv version [--bare]
#
# Shows the currently selected Python version(s) and how it was
# selected. To obtain only the version string, use `pyenv
# version-name'.
# selected. To obtain only the version string, use `pyenv version
# --bare` or `pyenv version-name'.
set -e
[ -n "$PYENV_DEBUG" ] && set -x
@ -13,8 +14,25 @@ OLDIFS="$IFS"
IFS=: PYENV_VERSION_NAMES=($(pyenv-version-name)) || exitcode=$?
IFS="$OLDIFS"
unset bare
for arg; do
case "$arg" in
--complete )
echo --bare
exit ;;
--bare ) bare=1 ;;
* )
pyenv-help --usage version >&2
exit 1
;;
esac
done
for PYENV_VERSION_NAME in "${PYENV_VERSION_NAMES[@]}"; do
echo "$PYENV_VERSION_NAME (set by $(pyenv-version-origin))"
if [[ -n $bare ]]; then
echo "$PYENV_VERSION_NAME"
else
echo "$PYENV_VERSION_NAME (set by $(pyenv-version-origin))"
fi
done
exit $exitcode

불러오는 중...
취소
저장