mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
12 lines
273 B
Bash
Executable file
12 lines
273 B
Bash
Executable file
#!/usr/bin/env bash -e
|
|
|
|
RBENV_VERSION="$1"
|
|
if [ -z "$RBENV_VERSION" ]; then
|
|
echo "usage: rbenv set-default VERSION" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Make sure the specified version is installed
|
|
rbenv-prefix "$RBENV_VERSION" >/dev/null
|
|
|
|
echo "$RBENV_VERSION" > "${HOME}/.rbenv/default"
|