mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
1f7722088d
Fixes #274
35 lines
638 B
Bash
Executable file
35 lines
638 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
|
|
|
|
version="$1"
|
|
|
|
if [ -z "$version" ]; then
|
|
if [ -z "$RBENV_VERSION" ]; then
|
|
echo "rbenv: no shell-specific version configured" >&2
|
|
exit 1
|
|
else
|
|
echo "echo \"\$RBENV_VERSION\""
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
if [ "$version" = "--unset" ]; then
|
|
echo "unset RBENV_VERSION"
|
|
exit
|
|
fi
|
|
|
|
# Make sure the specified version is installed.
|
|
if rbenv-prefix "$version" >/dev/null; then
|
|
echo "export RBENV_VERSION=\"${version}\""
|
|
else
|
|
echo "return 1"
|
|
exit 1
|
|
fi
|