1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

If git describe fails, assume new undetermined version

This commit is contained in:
downtownallday 2022-06-22 12:01:01 -04:00
parent c79fca6a45
commit 82599e542e

View File

@ -55,10 +55,17 @@ installed_state_capture() {
local gitver=$(git describe)
echo "GIT_VERSION='$gitver'" >>"$info"
parse_miab_version_string "$gitver"
if [ $? -ne 0 ]; then
echo "Unable to parse version string: $gitver"
return 1
if [ -z "$gitver" ]; then
# git: "No names found, cannot describe anything"
MAJOR=999
MINOR=
RELEASE=
else
parse_miab_version_string "$gitver"
if [ $? -ne 0 ]; then
echo "Unable to parse version string: '$gitver'"
return 1
fi
fi
echo "MAJOR=$MAJOR" >>"$info"
echo "MINOR=$MINOR" >>"$info"