From acce037eac698380a93a71b2764d957d2c0758a5 Mon Sep 17 00:00:00 2001 From: Graham Date: Sun, 12 Apr 2020 14:42:48 +0100 Subject: [PATCH] Copy entire share directory into the distribution Signed-off-by: Graham --- all/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/all/build.gradle.kts b/all/build.gradle.kts index 30995db6..e738b8a7 100644 --- a/all/build.gradle.kts +++ b/all/build.gradle.kts @@ -50,9 +50,9 @@ distributions { from("${rootProject.projectDir}/DCO") from("${rootProject.projectDir}/LICENSE") from("${rootProject.projectDir}/README.md") - from("${rootProject.projectDir}/share/doc") { - include("*.md") - into("share/doc") + from("${rootProject.projectDir}/share") { + exclude(".*", "*~") + into("share") } from("$buildDir/reports/dependency-license/THIRD-PARTY-NOTICES.txt") { rename { "third-party-licenses.txt" }