rbenv/libexec/rbenv-local

13 lines
257 B
Text
Raw Normal View History

#!/usr/bin/env bash -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv local VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-prefix "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > .rbenv-version