From 014c3d48935b1ca0529db78b8e5e6c4ef476899a Mon Sep 17 00:00:00 2001 From: Ian Young Date: Thu, 23 Dec 2021 21:26:43 +0000 Subject: [PATCH] Fix base directory name within -dist distribution Without the .get(), the substitution names the property rather than interpolating its value. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index db15ca07..67350aec 100644 --- a/build.gradle +++ b/build.gradle @@ -333,7 +333,7 @@ configure(rootProject) { description = "Builds -${archiveClassifier.get()} archive, containing all jars and docs, " + "suitable for community download page." - def baseDir = "${archiveBaseName}-${project.version}" + def baseDir = "${archiveBaseName.get()}-${project.version}" from("src/dist") { include "notice.txt"