Browse Source
Merge pull request #474 from trapexit/version
fix versioning with tarball building
pull/475/head
2.24.1
trapexit
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
tools/update-version
|
@ -6,6 +6,9 @@ if [ "${GIT}" = "" ]; then |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
VERSION=$(git describe --always --tags --dirty) |
|
|
VERSION=$(git describe --always --tags --dirty) |
|
|
|
|
|
if [ $? -ne 0 ]; then |
|
|
|
|
|
exit 0 |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
echo -n "${VERSION}" > VERSION |
|
|
echo -n "${VERSION}" > VERSION |
|
|
grep -q \"${VERSION}\" src/version.hpp |
|
|
grep -q \"${VERSION}\" src/version.hpp |
|
|