mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
dcca61c0bc
When `rbenv --version` is called, this now happens: 1. It changes into the directory where `libexec/rbenv--version` resides and checks if it's a checkout of the rbenv repo (as opposed to Homebrew checkout or something else). Then it reads the git revision. 2. If that failed, change to `$RBENV_ROOT` directory and repeat step 1.
26 lines
731 B
Bash
Executable file
26 lines
731 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Summary: Display the version of rbenv
|
|
#
|
|
# Displays the version number of this rbenv release, including the
|
|
# current revision from git, if available.
|
|
#
|
|
# The format of the git revision is:
|
|
# <version>-<num_commits>-<git_sha>
|
|
# where `num_commits` is the number of commits since `version` was
|
|
# tagged.
|
|
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
version="0.4.0"
|
|
git_revision=""
|
|
|
|
for source_dir in "${BASH_SOURCE%/*}" "$RBENV_ROOT"; do
|
|
if cd "$source_dir" 2>/dev/null && git remote -v 2>/dev/null | grep -q rbenv; then
|
|
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
|
git_revision="${git_revision#v}"
|
|
[ -z "$git_revision" ] || break
|
|
fi
|
|
done
|
|
|
|
echo "rbenv ${git_revision:-$version}"
|