diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-04-29 11:01:22 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 11:01:22 +0530 |
commit | edc6dcda88a46cb3cd963d89145f48fb1ef0a189 (patch) | |
tree | ffc619d841e434bdd95743e34e52026f8988f968 /app/build.gradle | |
parent | f9c310e93a6c4ac820779b052c3be40199d9bc9c (diff) |
build: update to openpgp-ktx 2.0 (#749)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/app/build.gradle b/app/build.gradle index 9a22d6db..2ea2a8e8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,15 +9,6 @@ plugins { final def keystorePropertiesFile = rootProject.file 'keystore.properties' -final def gitHash = { -> - final def stdout = new ByteArrayOutputStream() - exec { - commandLine 'git', 'describe', '--tags' - standardOutput = stdout - } - stdout.toString().trim() -} - static final def isSnapshot() { return System.env['GITHUB_WORKFLOW'] != null && System.env['SNAPSHOT'] != null } |