mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
2457419b4a
modified rbenv source for Python and renamed to pyenv.
9 lines
166 B
Bash
Executable file
9 lines
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
if [ -n "$PYENV_VERSION" ]; then
|
|
echo "PYENV_VERSION environment variable"
|
|
else
|
|
pyenv-version-file
|
|
fi
|