pyenv/libexec/rbenv-global

22 lines
508 B
Text
Raw Normal View History

2011-08-18 15:32:33 -04:00
#!/usr/bin/env bash
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-18 15:32:33 -04:00
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
echo system
exec rbenv-versions --bare
fi
2011-08-18 15:32:33 -04:00
RBENV_VERSION="$1"
RBENV_VERSION_FILE="${RBENV_ROOT}/version"
2011-08-18 15:32:33 -04:00
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}/global" ||
2011-09-11 12:58:57 -04:00
rbenv-version-file-read "${RBENV_ROOT}/default" ||
2011-08-18 15:32:33 -04:00
echo system
fi