mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Nix and windows variant of getting tag
This commit is contained in:
parent
8908d10028
commit
c8d66fa246
1 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
|||
import org.apache.tools.ant.taskdefs.condition.Os
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
|
@ -94,7 +96,12 @@ dependencies {
|
|||
}
|
||||
|
||||
def getVersion() {
|
||||
return 'git describe --always --long'.execute([], project.rootDir).text
|
||||
.trim()
|
||||
.replaceAll(/(-0)?-[^-]+$/, "")
|
||||
String result
|
||||
if(Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||
result = 'cmd /c git describe --always --long'.execute([], project.rootDir).text
|
||||
} else {
|
||||
result = 'git describe --always --long'.execute([], project.rootDir).text
|
||||
}
|
||||
|
||||
return result.trim().replaceAll(/(-0)?-[^-]+$/, "")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue