From 9ad0bc24548431dea6758ba962870da67163b301 Mon Sep 17 00:00:00 2001 From: sk Date: Fri, 9 Dec 2022 14:23:40 +0100 Subject: [PATCH] fix upstream branch --- mastodon/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/build.gradle b/mastodon/build.gradle index c32cc5498..1af2a6590 100644 --- a/mastodon/build.gradle +++ b/mastodon/build.gradle @@ -7,7 +7,7 @@ android { def getGitHash = { -> def stdout = new ByteArrayOutputStream() exec { - commandLine 'git', 'rev-parse', '--short', 'main' + commandLine 'git', 'rev-parse', '--short', 'upstream/master' standardOutput = stdout } return stdout.toString().trim()