gplay version: ignore branch for version suffix

This commit is contained in:
SpiritCroc 2020-08-09 17:02:17 +02:00
parent 8602aba2a5
commit 2a5342087d
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ static def gitBranchName() {
// For Google Play build, build on any other branch than master will have a "-dev" suffix
static def getGplayVersionSuffix() {
if (gitBranchName() == "master") {
if (gitBranchName() == "master" || true) {
return ""
} else {
return "-dev"