mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Add rbenv-set-local
This commit is contained in:
parent
af6b06743b
commit
6ec91083d8
1 changed files with 14 additions and 0 deletions
14
bin/rbenv-set-local
Executable file
14
bin/rbenv-set-local
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
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
|
Loading…
Reference in a new issue