mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
7 lines
164 B
Bash
Executable file
7 lines
164 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Summary: Show the current Ruby version
|
|
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
echo "$(rbenv-version-name) (set by $(rbenv-version-origin))"
|