1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/bin/sh
# This script generates the version string, as printed by "dte -V".
set -eu
export VPREFIX="$1"
# This value is filled automatically for git-archive(1) tarballs.
# See also: "export-subst" in gitattributes(5).
# shellcheck disable=SC2016
distinfo_commit_short='6e37409d'
if expr "$distinfo_commit_short" : '[0-9a-f]\{7,40\}$' >/dev/null; then
echo "${VPREFIX}-g${distinfo_commit_short}-dist"
exit 0
fi
git_describe_ver=$(git describe --match="v$VPREFIX" 2>/dev/null || true)
if test -n "$git_describe_ver"; then
echo "${git_describe_ver#v}"
exit 0
fi
echo "$VPREFIX-unknown"
|