Android: Fix incorrect version string on build

This commit is contained in:
Connor McLaughlin 2020-12-31 19:33:56 +10:00
parent 4f32f2f915
commit bea6f0beb4
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def getVersion() {
def versionNumber = '0.0-unknown'
try {
versionNumber = 'git describe --tags --exclude latest'.execute([], project.rootDir).text
versionNumber = 'git describe --tags --exclude latest --exclude preview'.execute([], project.rootDir).text
.trim()
.replaceAll(/(-0)?-[^-]+$/, "")
} catch (Exception e) {