1
0
Fork 0
mirror of https://github.com/pyenv/pyenv.git synced 2025-03-10 22:51:54 +00:00
pyenv/libexec/rbenv-local
2011-08-18 14:11:40 -05:00

14 lines
326 B
Bash
Executable file

#!/usr/bin/env bash
set -e
RBENV_VERSION="$1"
RBENV_VERSION_FILE=".rbenv-version"
if [ -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