mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
fe809ea90d
`default` was made legacy back in 2011 with
5be66da9f4
(the command was renamed from
`rbenv-default` to `rbenv-global`, and so the global file was renamed
from `$RBENV_ROOT/default` to `$RBENV_ROOT/global` (the latter taking
precedence)
`global` was then made legacy about a month later in Sep 2011 when the
preferred filename was changed to `$RBENV_ROOT/version`.
31 lines
894 B
Bash
Executable file
31 lines
894 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Summary: Set or show the global Ruby version
|
|
#
|
|
# Usage: rbenv global <version>
|
|
#
|
|
# Sets the global Ruby version. You can override the global version at
|
|
# any time by setting a directory-specific version with `rbenv local'
|
|
# or by setting the `RBENV_VERSION' environment variable.
|
|
#
|
|
# <version> should be a string matching a Ruby version known to rbenv.
|
|
# The special version string `system' will use your default system Ruby.
|
|
# Run `rbenv versions' for a list of available Ruby versions.
|
|
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
# Provide rbenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
echo system
|
|
exec rbenv-versions --bare
|
|
fi
|
|
|
|
RBENV_VERSION="$1"
|
|
RBENV_VERSION_FILE="${RBENV_ROOT}/version"
|
|
|
|
if [ -n "$RBENV_VERSION" ]; then
|
|
rbenv-version-file-write "$RBENV_VERSION_FILE" "$RBENV_VERSION"
|
|
else
|
|
rbenv-version-file-read "$RBENV_VERSION_FILE" || echo system
|
|
fi
|