You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 regels
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