Skip to content

Commit 014c3d4

Browse files
iayrstoyanchev
authored andcommitted
Fix base directory name within -dist distribution
Without the .get(), the substitution names the property rather than interpolating its value.
1 parent c8c9df6 commit 014c3d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ configure(rootProject) {
333333
description = "Builds -${archiveClassifier.get()} archive, containing all jars and docs, " +
334334
"suitable for community download page."
335335

336-
def baseDir = "${archiveBaseName}-${project.version}"
336+
def baseDir = "${archiveBaseName.get()}-${project.version}"
337337

338338
from("src/dist") {
339339
include "notice.txt"

0 commit comments

Comments
 (0)