|
|
@ -1,12 +1,13 @@ |
|
|
#!/usr/bin/env bash |
|
|
#!/usr/bin/env bash |
|
|
# Summary: Display the version of rbenv |
|
|
# Summary: Display the version of rbenv |
|
|
# |
|
|
# |
|
|
# Displays the current revision info of rbenv from git if available, or falls |
|
|
|
|
|
# back to the version of the last release. |
|
|
|
|
|
|
|
|
# Displays the current revision info of rbenv from git if available, |
|
|
|
|
|
# or falls back to the version of the last release. |
|
|
# |
|
|
# |
|
|
# The format of the git revision is: |
|
|
# The format of the git revision is: |
|
|
# ${version}-${num_commits}-g${git_sha} |
|
|
# ${version}-${num_commits}-g${git_sha} |
|
|
# where `num_commits` is the number of commits since `version` was tagged. |
|
|
|
|
|
|
|
|
# where `num_commits` is the number of commits since `version` was |
|
|
|
|
|
# tagged. |
|
|
|
|
|
|
|
|
set -e |
|
|
set -e |
|
|
[ -n "$RBENV_DEBUG" ] && set -x |
|
|
[ -n "$RBENV_DEBUG" ] && set -x |
|
|
|