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:
parent
2fe9c7efce
commit
8ab3106f6b
@ -6,6 +6,7 @@ then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DEF_VER=4.2.2.dev
|
||||
VERFILE="$1"
|
||||
|
||||
if [ -d '.git' ]
|
||||
@ -16,11 +17,6 @@ then
|
||||
[ -n "$VERSION" ] && printf "%s" "$VERSION" >"$VERFILE"
|
||||
fi
|
||||
|
||||
if [ -f "$VERFILE" ]
|
||||
then
|
||||
cat "$VERFILE"
|
||||
else
|
||||
echo "git-version-gen: unknown version number." >&2
|
||||
exit 1
|
||||
fi
|
||||
[ -f "$VERFILE" ] || printf "%s" "$DEF_VER" >"$VERFILE"
|
||||
|
||||
cat "$VERFILE"
|
||||
|
Loading…
x
Reference in New Issue
Block a user