From f0d8532f7117a06eb385ca459234a1148c2a6f20 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.

---
 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