Skip to content
Snippets Groups Projects
Commit 8fab4007 authored by Reinhard Tartler's avatar Reinhard Tartler
Browse files

Use the contents of RELEASE as version fallback instead of 'UNKNOWN'

This makes binaries produced by source tarballs identify themselves with
the version number of the corresponding release series, unless overriden
by a 'VERSION' file.
parent 7b2d2190
No related branches found
No related tags found
No related merge requests found
0.7
......@@ -5,7 +5,7 @@ revision=$(cd "$1" && git describe --always 2> /dev/null)
test "$revision" && revision=git-$revision
# no revision number found
test "$revision" || revision=UNKNOWN
test "$revision" || revision=$(cd "$1" && cat RELEASE 2> /dev/null)
# releases extract the version number from the VERSION file
version=$(cd "$1" && cat VERSION 2> /dev/null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment