From 5af9ecf959c3d23887a203867601c416806af990 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Wed, 1 Dec 2021 14:41:20 +0300 Subject: [PATCH] Native: fix packing RELEASE_NOTES.md into the bundle 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 bf3d459c1d0..517cd4b8db4 100644 --- a/kotlin-native/build.gradle +++ b/kotlin-native/build.gradle @@ -565,7 +565,7 @@ configure([bundleRegular, bundlePrebuilt]) { dependsOn("crossDistEndorsedCache") dependsOn("distSources") dependsOn("distDef") - from(project.rootDir) { + from(project.projectDir) { include 'RELEASE_NOTES.md' into baseName }