Fix debug build verName

This commit is contained in:
luvletter2333 2022-01-21 17:19:22 +08:00
parent 1d3011ea58
commit 7a63017f54
No known key found for this signature in database
GPG Key ID: A26A8880836E1978
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ def verName = "8.4.4-rc01"
def verCode = 545
if (System.getenv("DEBUG_BUILD") == "true") {
verName += "-" + RuntimeUtil.execForStr("git log --pretty=format:'%h' -n 1")
verName += "-" + RuntimeUtil.execForStr("git log --pretty=format:'%h' -n 1").trim()
}
def officialVer = "8.4.4"