Fix gradle script

This commit is contained in:
NotMyFault 2019-08-04 18:40:39 +02:00 committed by MattBDev
parent 3e8b8a7575
commit 9e8a6c702d

View File

@ -28,7 +28,7 @@ def revision = ""
def buildNumber = "" def buildNumber = ""
def date = "" def date = ""
ext { ext {
git = Grgit.open(dir: '.git') git = Grgit.open(dir: new File(rootDir.toString()+'/.git'))
date = git.head().getDate().format("yy.MM.dd") date = git.head().getDate().format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}" revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds; parents = git.head().parentIds;
@ -43,7 +43,6 @@ ext {
} }
} }
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
version = String.format("%s.%s", rootVersion, buildNumber) version = String.format("%s.%s", rootVersion, buildNumber)
description = rootProject.name description = rootProject.name