fix: assume builds are stable when git isn't installed

Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
seth 2022-12-22 19:25:04 -05:00
parent bf2ce54076
commit 01139c3b50
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -76,7 +76,8 @@ Config::Config()
// Assume that builds outside of Git repos are "stable"
if (GIT_REFSPEC == QStringLiteral("GITDIR-NOTFOUND")
|| GIT_TAG == QStringLiteral("GITDIR-NOTFOUND"))
|| GIT_TAG == QStringLiteral("GITDIR-NOTFOUND")
|| GIT_TAG == QStringLiteral("GIT-NOTFOUND"))
{
GIT_REFSPEC = "refs/heads/stable";
GIT_TAG = versionString();