git-version-gen: Add default version

Instead of bailing out early in the build process when neither a version
file nor a valid Git repository is detected, use a hardcoded default
version string. This fixes building from shallow clones or Git
snapshots.

Also fixes GitHub issue #22.

Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Lukas Fleischer 2017-09-08 22:29:27 +02:00
parent 2fe9c7efce
commit 8ab3106f6b

View File

@ -6,6 +6,7 @@ then
exit 1 exit 1
fi fi
DEF_VER=4.2.2.dev
VERFILE="$1" VERFILE="$1"
if [ -d '.git' ] if [ -d '.git' ]
@ -16,11 +17,6 @@ then
[ -n "$VERSION" ] && printf "%s" "$VERSION" >"$VERFILE" [ -n "$VERSION" ] && printf "%s" "$VERSION" >"$VERFILE"
fi fi
if [ -f "$VERFILE" ] [ -f "$VERFILE" ] || printf "%s" "$DEF_VER" >"$VERFILE"
then
cat "$VERFILE"
else
echo "git-version-gen: unknown version number." >&2
exit 1
fi
cat "$VERFILE"