Merge pull request #474 from trapexit/version

fix versioning with tarball building
This commit is contained in:
trapexit 2018-03-16 23:27:04 -04:00 committed by GitHub
commit 0545da67ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,9 @@ if [ "${GIT}" = "" ]; then
fi
VERSION=$(git describe --always --tags --dirty)
if [ $? -ne 0 ]; then
exit 0
fi
echo -n "${VERSION}" > VERSION
grep -q \"${VERSION}\" src/version.hpp