mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
15 lines
445 B
Bash
Executable file
15 lines
445 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Usage: pyenv push <version>
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
IFS=: PYENV_VERSION_NAMES=($(pyenv-version-name))
|
|
versions=("$@")
|
|
PYENV_VERSION_NAMES=("${PYENV_VERSION_NAMES[@]}" "${versions[@]}")
|
|
|
|
if [ -n "$PYENV_VERSION" ]; then
|
|
IFS=: PYENV_VERSION="${PYENV_VERSION_NAMES[*]}"
|
|
echo "export PYENV_VERSION=\"${PYENV_VERSION}\""
|
|
else
|
|
pyenv-version-file-write "$(pyenv-version-file)" "${PYENV_VERSION_NAMES[@]}"
|
|
fi
|