Relax KN check for bundled libraries
diff --git a/kotlin-native/build.gradle b/kotlin-native/build.gradle
index 9bd9a07..2830dd9 100644
--- a/kotlin-native/build.gradle
+++ b/kotlin-native/build.gradle
@@ -687,12 +687,12 @@
[ (target): bundles.find { it.name.contains(platformName(target)) }]
}
result.retainAll { it.value != null }
- def missingBundles = hostTargets - result.keySet()
- if (!missingBundles.isEmpty()) {
- println("Some of the archive bundles are missing for targets $missingBundles:")
- println(result)
- throw new IllegalArgumentException("Bundle archives are missing for $missingBundles")
- }
+// def missingBundles = hostTargets - result.keySet()
+// if (!missingBundles.isEmpty()) {
+// println("Some of the archive bundles are missing for targets $missingBundles:")
+// println(result)
+// throw new IllegalArgumentException("Bundle archives are missing for $missingBundles")
+// }
result.each { target, file ->
if (!file.name.contains(kotlinVersion)) {
throw new IllegalArgumentException("Incorrect version specified for the publish: ${file.name}")