
/usr/bin/env seems to have problems with arguments to bash on some platforms. To bypass this, use set -e instead.
14 lines
265 B
Bash
Executable File
14 lines
265 B
Bash
Executable File
#!/usr/bin/env 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-prefix "$RBENV_VERSION" >/dev/null
|
|
|
|
echo "$RBENV_VERSION" > .rbenv-version
|