fix: check if GIT_REFSPEC is empty

Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
seth 2022-12-23 20:50:08 -05:00
parent 01139c3b50
commit f932ffcc5b
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

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