summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGiovanni Harting <539@idlegandalf.com>2016-07-21 19:15:03 +0200
committerGiovanni Harting <539@idlegandalf.com>2016-07-21 19:15:03 +0200
commit6a932e6e56ecf19a5f843f83039bffc2f3647ba0 (patch)
tree17032895d62cb321a467e879bc14ef9aacec90da /build.gradle
parent181fdc196e112da7428e9f07273899fe76ab2a1a (diff)
fixed some envs
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 972f773..7246278 100644
--- a/build.gradle
+++ b/build.gradle
@@ -37,8 +37,8 @@ group = "com.sosnitzka" // http://maven.apache.org/guides/mini/guide-naming-conv
archivesBaseName = "taiga"
task buildInfo {
- if (System.getenv().TAG != null) {
- ext.revision = System.getenv().TAG
+ if (System.getenv().TAIGA_TAG != null) {
+ ext.revision = System.getenv().TAIGA_TAG
} else {
ext.revision = "snapshot"
}
@@ -47,8 +47,8 @@ task buildInfo {
ext.buildNum = System.getenv().BUILD_NUMBER
}
- if (System.getenv().CHANGES != null) {
- ext.changes = System.getenv().CHANGES
+ if (System.getenv().TAIGA_CHANGES != null) {
+ ext.changes = System.getenv().TAIGA_CHANGES
} else {
ext.changes = ""
}