We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f606770 commit bc82836Copy full SHA for bc82836
1 file changed
settings.gradle.kts
@@ -15,8 +15,11 @@ pluginManagement {
15
// See IDEA bug: https://youtrack.jetbrains.com/issue/IDEA-329756
16
val jacodbPath = file("jacodb").takeIf { it.exists() }
17
?: file("../jacodb").takeIf { it.exists() }
18
- ?: error("Local JacoDB directory not found")
19
-includeBuild(jacodbPath.toPath().toRealPath().toAbsolutePath())
+if (jacodbPath != null) {
+ includeBuild(jacodbPath.toPath().toRealPath().toAbsolutePath())
20
+} else {
21
+ logger.warn("Local JacoDB directory not found")
22
+}
23
24
val usvmPython = "usvm-python"
25
fun includePy(name: String) {
0 commit comments