mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 22:07:59 +01:00
Fix building when not running in a git repo
This commit is contained in:
parent
b72270f480
commit
8a5e173a74
1 changed files with 9 additions and 7 deletions
12
build.gradle
12
build.gradle
|
@ -33,12 +33,14 @@ targetCompatibility = JavaVersion.VERSION_1_8
|
|||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
|
||||
ext {
|
||||
revision = grgit.log().size()
|
||||
hash = grgit.head().abbreviatedId
|
||||
if (grgit == null) {
|
||||
revision = "nogit"
|
||||
} else {
|
||||
revision = "${grgit.log().size()}-${grgit.head().abbreviatedId}"
|
||||
if (file('.git/shallow').exists()) {
|
||||
// don't clone with --depth
|
||||
revision = -1
|
||||
hash += " shallow"
|
||||
revision = "-1-${shallow}"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -48,7 +50,7 @@ if (project.release != 'RELEASE') {
|
|||
version += "-${project.release}"
|
||||
}
|
||||
if (project.release == 'SNAPSHOT') {
|
||||
version += "-${project.revision}-${project.hash}"
|
||||
version += "-${project.revision}"
|
||||
}
|
||||
|
||||
group = project.group
|
||||
|
|
Loading…
Reference in a new issue