From fdad1a19c33ded96d8238aad54dce73851350f9c Mon Sep 17 00:00:00 2001 From: Daniel Fahey <dpfahey@gmail.com> Date: Wed, 23 Aug 2023 17:48:25 +0100 Subject: [PATCH] Gradle task name to follow conventions (starting lowercase `aarch64` for ARM64) --- README.md | 4 ++-- mailbox-cli/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9dc293ee..13b0770c 100644 --- a/README.md +++ b/README.md @@ -94,9 +94,9 @@ A fat JAR for running on a x86_64 GNU/Linux server can be compiled with ./gradlew x86LinuxJar -And also AArch64 with +And also ARM64 with - ./gradlew ARM64LinuxJar + ./gradlew aarch64LinuxJar ## Donate [](https://liberapay.com/Briar/donate) [](https://flattr.com/t/592836/) diff --git a/mailbox-cli/build.gradle b/mailbox-cli/build.gradle index 946963b7..cde3040d 100644 --- a/mailbox-cli/build.gradle +++ b/mailbox-cli/build.gradle @@ -119,7 +119,7 @@ task x86LinuxJar(type: Jar) { jarFactory(it, 'linux', 'x86_64', configurations.runtimeClasspath) } -task ARM64LinuxJar(type: Jar) { +task aarch64LinuxJar(type: Jar) { group = "Build" description = "Assembles a runnable fat jar for AArch64 Linux" jarFactory(it, 'linux', 'aarch64', configurations.runtimeClasspath) -- GitLab