mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
10 lines
221 B
Bash
Executable file
10 lines
221 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Summary: Explain how the current Ruby version is set
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
if [ -n "$RBENV_VERSION" ]; then
|
|
echo "RBENV_VERSION environment variable"
|
|
else
|
|
rbenv-version-file
|
|
fi
|