From 3d7ac9037a1ced985ccb1ff4cff6b59800a8909c Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Wed, 1 Dec 2021 14:40:10 +0300 Subject: [PATCH] Native: fix packing licenses into the samples archive The source directory became wrong after merging the kotlin-native/ into kotlin. --- kotlin-native/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/build.gradle b/kotlin-native/build.gradle index 517cd4b8db4..da58d3e020d 100644 --- a/kotlin-native/build.gradle +++ b/kotlin-native/build.gradle @@ -621,7 +621,7 @@ configure([samplesZip, samplesTar]) { exclude '**/gradle.properties' } - from(project.rootDir) { + from(project.projectDir) { include 'licenses/**' }