Add commit date to output of kvazaar --version

This commit is contained in:
Arttu Ylä-Outinen 2016-03-14 12:41:41 +02:00
parent 42641cdb5e
commit 2fcd677ba9

View file

@ -5,6 +5,7 @@ cd ..
if type git >/dev/null 2>/dev/null && [ -d .git ]; then if type git >/dev/null 2>/dev/null && [ -d .git ]; then
version="$(git describe --dirty --tags --match 'v*')" version="$(git describe --dirty --tags --match 'v*')"
version="${version} $(git log -1 --pretty=format:%cd --date=short)"
else else
version="v$(awk '/#define KVZ_VERSION/ { print $3 }' src/global.h)" version="v$(awk '/#define KVZ_VERSION/ { print $3 }' src/global.h)"
fi fi