您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
|
#!/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}"
|