mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
8187bc84e3
users can use multiple python versions at once.
29 lines
687 B
Bash
Executable file
29 lines
687 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
# Provide pyenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
echo --unset
|
|
echo system
|
|
exec pyenv-versions --bare
|
|
fi
|
|
|
|
PYENV_VERSIONS=($@)
|
|
PYENV_VERSION_FILE=".pyenv-version"
|
|
|
|
if [ "$PYENV_VERSIONS" = "--unset" ]; then
|
|
rm -f "$PYENV_VERSION_FILE"
|
|
elif [ -n "$PYENV_VERSIONS" ]; then
|
|
pyenv-version-file-write "$PYENV_VERSION_FILE" "${PYENV_VERSIONS[@]}"
|
|
else
|
|
IFS=: PYENV_VERSIONS=($(
|
|
pyenv-version-file-read "$PYENV_VERSION_FILE" ||
|
|
{ echo "pyenv: no local version configured for this directory"
|
|
exit 1
|
|
} >&2
|
|
))
|
|
for PYENV_VERSION in "${PYENV_VERSIONS[@]}"; do
|
|
echo "$PYENV_VERSION"
|
|
done
|
|
fi
|