pyenv/libexec/rbenv---version

23 lines
565 B
Text
Raw Normal View History

2012-12-12 18:40:29 -05:00
#!/usr/bin/env bash
# Summary: Display the version of rbenv
#
2012-12-29 23:05:04 -05:00
# Displays the version number of this rbenv release, including the
# current revision from git, if available.
#
# The format of the git revision is:
2012-12-29 23:05:04 -05:00
# <version>-<num_commits>-<git_sha>
# where `num_commits` is the number of commits since `version` was
# tagged.
2012-12-12 18:40:29 -05:00
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2013-01-04 13:27:26 -05:00
version="0.4.0"
2012-12-12 18:40:29 -05:00
2013-03-07 15:05:49 -05:00
if cd "$RBENV_ROOT" 2>/dev/null; then
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
git_revision="${git_revision#v}"
fi
2012-12-12 18:40:29 -05:00
2012-12-13 12:22:06 -05:00
echo "rbenv ${git_revision:-$version}"