pyenv/libexec/rbenv-set-local

13 lines
251 B
Text
Raw Normal View History

2011-08-02 22:43:43 +00:00
#!/bin/bash -e
2011-08-01 21:22:35 +00: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
rbenv-path "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > .rbenv-version