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