mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
24 lines
555 B
Bash
Executable file
24 lines
555 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
# Provide rbenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
echo --unset
|
|
echo system
|
|
exec rbenv-versions --bare
|
|
fi
|
|
|
|
RBENV_VERSION="$1"
|
|
RBENV_VERSION_FILE=".rbenv-version"
|
|
|
|
if [ "$RBENV_VERSION" = "--unset" ]; then
|
|
rm -f "$RBENV_VERSION_FILE"
|
|
elif [ -n "$RBENV_VERSION" ]; then
|
|
rbenv-version-file-write "$RBENV_VERSION_FILE" "$RBENV_VERSION"
|
|
else
|
|
rbenv-version-file-read "$RBENV_VERSION_FILE" ||
|
|
{ echo "rbenv: no local version configured for this directory"
|
|
exit 1
|
|
} >&2
|
|
fi
|