From 6fbb9175c13a4e80a2488bb649c85f81c9b9a121 Mon Sep 17 00:00:00 2001 From: Tobias Nett Date: Sun, 18 Oct 2020 14:56:14 +0200 Subject: [PATCH] fix: remove doubled files when bundling the JRE (#599) The culprit was that `outputs.dir unpackDir` _adds_ another output directory to some list that already exists internally. This is unnecessary and, in fact, puts a duplicate into the list of outputs (note: not a set!). Co-authored-by: jdrueckert --- config/gradle/jre.gradle | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/gradle/jre.gradle b/config/gradle/jre.gradle index 2d2cd8145..9606a6adf 100644 --- a/config/gradle/jre.gradle +++ b/config/gradle/jre.gradle @@ -70,8 +70,6 @@ def createJreTasks(String taskNameBase, } into unpackDir - outputs.dir unpackDir - dependsOn "download${taskNameBase}" }