1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-12 21:33:54 -05:00
Files
pyenv/libexec/rbenv---version
2012-12-13 11:26:39 -06:00

12 lines
228 B
Bash
Executable File

#!/usr/bin/env bash
set -e
[ -n "$RBENV_DEBUG" ] && set -x
version=0.3.0
cd "$RBENV_ROOT"
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
git_revision="${git_revision#v}"
echo "rbenv ${git_revision:-$version}"