Skip to content
Snippets Groups Projects
Commit fdad1a19 authored by Daniel Fahey's avatar Daniel Fahey
Browse files

Gradle task name to follow conventions (starting lowercase `aarch64` for ARM64)

parent 7fbdeb42
No related branches found
No related tags found
Loading
......@@ -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
[![Donate using Liberapay](https://briarproject.org/img/liberapay.svg)](https://liberapay.com/Briar/donate) [![Flattr this](https://briarproject.org/img/flattr-badge-large.png "Flattr this")](https://flattr.com/t/592836/)
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment