blob: 67e4839cb3bba9634995bb6c6054dd2273629b70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
if [ "$#" -ne 1 ]
then
echo "usage: git-version-gen <verfile>" >&2
exit 1
fi
DEF_VER=4.5.1
VERFILE="$1"
if [ -d '.git' ]
then
git update-index --refresh > /dev/null 2>&1
VERSION=`git describe --abbrev=4 --match='v[0-9]*' --dirty 2>/dev/null`
VERSION=`echo "$VERSION" | sed 's/^v//'`
[ -n "$VERSION" ] && printf "%s" "$VERSION" >"$VERFILE"
fi
[ -f "$VERFILE" ] || printf "%s" "$DEF_VER" >"$VERFILE"
cat "$VERFILE"
|