From e8baee67344cf8f75d5942ed2ed750b0786737b8 Mon Sep 17 00:00:00 2001 From: akwizgran <michael@briarproject.org> Date: Thu, 30 Nov 2017 16:55:41 +0000 Subject: [PATCH] Specify 7 characters for Git revision. (cherry picked from commit f0d8532) --- briar-android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/briar-android/build.gradle b/briar-android/build.gradle index d9e6559b44..adfbdaa3bf 100644 --- a/briar-android/build.gradle +++ b/briar-android/build.gradle @@ -169,7 +169,7 @@ def getGitHash = { -> def stdout = new ByteArrayOutputStream() try { exec { - commandLine 'git', 'rev-parse', '--short', 'HEAD' + commandLine 'git', 'rev-parse', '--short=7', 'HEAD' standardOutput = stdout } return stdout.toString().trim() -- GitLab