We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98cbfac commit 04660c6Copy full SHA for 04660c6
jablib/build.gradle.kts
@@ -7,6 +7,13 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
7
import java.net.URI
8
import java.util.*
9
10
+// Ensure JBang cache directory exists to avoid task validation error
11
+// Fixes: Property 'installDir' specifies directory '.../.gradle/caches/jbang' which doesn't exist.
12
+val jbangCacheDir = File(System.getProperty("user.home"), ".gradle/caches/jbang")
13
+if (!jbangCacheDir.exists()) {
14
+ jbangCacheDir.mkdirs()
15
+}
16
+
17
plugins {
18
id("org.jabref.gradle.module")
19
id("org.jabref.gradle.feature.download")
0 commit comments