mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-15 06:43:53 -05:00
Initial commit
This commit is contained in:
15
bin/rbenv-set-default
Executable file
15
bin/rbenv-set-default
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
RBENV_VERSION="$1"
|
||||
if [ -z "$RBENV_VERSION" ]; then
|
||||
echo "usage: rbenv set-default VERSION" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
RBENV_VERSION_PATH="${HOME}/.rbenv/versions/${RBENV_VERSION}"
|
||||
if [ ! -d "$RBENV_VERSION_PATH" ]; then
|
||||
echo "rbenv: version \`${RBENV_VERSION}' not installed" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "$RBENV_VERSION" > "${HOME}/.rbenv/default"
|
||||
Reference in New Issue
Block a user