mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
20 lines
455 B
Bash
Executable file
20 lines
455 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
# Provide rbenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
echo system
|
|
exec rbenv-versions --bare
|
|
fi
|
|
|
|
RBENV_VERSION="$1"
|
|
RBENV_VERSION_FILE="${RBENV_ROOT}/global"
|
|
|
|
if [ -n "$RBENV_VERSION" ]; then
|
|
rbenv-version-file-write "$RBENV_VERSION_FILE" "$RBENV_VERSION"
|
|
else
|
|
rbenv-version-file-read "$RBENV_VERSION_FILE" ||
|
|
rbenv-version-file-read "${RBENV_ROOT}/default" ||
|
|
echo system
|
|
fi
|