tirbofish/dropbear · commit
a5dd54780be4dddbef486f1da4d581cc6055eb9a
ci: fix build.gradle.kts
Signature present but could not be verified.
Unverified
@@ -32,8 +32,13 @@ val libPathProvider = provider { layout.projectDirectory.file("libs/$libName").asFile ) - candidates.firstOrNull { it.exists() }?.absolutePath - ?: println("No Rust library exists") + val foundFile = candidates.firstOrNull { it.exists() } + if (foundFile != null) { + foundFile.absolutePath + } else { + println("No Rust library exists") + "" + } } kotlin {