pyenv/libexec/rbenv-set-local

13 lines
261 B
Text
Raw Normal View History

2011-08-02 19:11:41 -04:00
#!/usr/bin/env bash -e
2011-08-01 17:22:35 -04:00
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv set-local VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
2011-08-03 00:11:10 -04:00
rbenv-prefix "$RBENV_VERSION" >/dev/null
2011-08-01 17:22:35 -04:00
echo "$RBENV_VERSION" > .rbenv-version