25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

10 satır
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