pyenv/libexec/rbenv-set-local

13 lines
261 B
Plaintext
Raw Normal View History

2011-08-02 19:11:41 -04:00
#!/usr/bin/env bash -e
2011-08-01 16:22:35 -05: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-02 23:11:10 -05:00
rbenv-prefix "$RBENV_VERSION" >/dev/null
2011-08-01 16:22:35 -05:00
echo "$RBENV_VERSION" > .rbenv-version