1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 13:03:46 -05:00

Remove set- prefix from local and default commands.

This commit is contained in:
Graham Ashton
2011-08-13 07:34:15 +01:00
parent 83ced494fa
commit 7a0cde9a4e
7 changed files with 41 additions and 33 deletions

12
libexec/rbenv-local Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv local VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-prefix "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > .rbenv-version