您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
223 B

  1. #!/usr/bin/env bash
  2. # Summary: Explain how the current Python version is set
  3. set -e
  4. [ -n "$PYENV_DEBUG" ] && set -x
  5. if [ -n "$PYENV_VERSION" ]; then
  6. echo "PYENV_VERSION environment variable"
  7. else
  8. pyenv-version-file
  9. fi