mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 09:25:49 +03:00
Ensure builds are reproducible (#842)
This commit is contained in:
parent
d1699279fe
commit
8c32796d5c
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ Translations 🗣:
|
||||||
-
|
-
|
||||||
|
|
||||||
Build 🧱:
|
Build 🧱:
|
||||||
-
|
- Ensure builds are reproducible (#842)
|
||||||
|
|
||||||
Changes in RiotX 0.13.0 (2020-01-17)
|
Changes in RiotX 0.13.0 (2020-01-17)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
|
@ -74,7 +74,7 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
static def gitRevision() {
|
static def gitRevision() {
|
||||||
def cmd = "git rev-parse --short HEAD"
|
def cmd = "git rev-parse --short=8 HEAD"
|
||||||
return cmd.execute().text.trim()
|
return cmd.execute().text.trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ def getVersionCode() {
|
||||||
}
|
}
|
||||||
|
|
||||||
static def gitRevision() {
|
static def gitRevision() {
|
||||||
def cmd = "git rev-parse --short HEAD"
|
def cmd = "git rev-parse --short=8 HEAD"
|
||||||
return cmd.execute().text.trim()
|
return cmd.execute().text.trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue