blob: e53ddbc646f8bb727983994981b397915fe146e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
TAG=`git describe --abbrev=0 HEAD`
REV_SHORT=`git rev-parse --short HEAD`
REV_LONG=`git rev-parse HEAD`
cat <<EOF
{
tag: "${TAG}"
rev_short: "${REV_SHORT}"
rev_long: "${REV_LONG}"
}
EOF
|