mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-14 22:33:52 -05:00
Move subcommands into libexec/
This commit is contained in:
12
libexec/rbenv-set-local
Executable file
12
libexec/rbenv-set-local
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash -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
|
||||
Reference in New Issue
Block a user