Skip to content

Commit 5f91932

Browse files
committed
~ Fix build on windows by using proper file to URL conversion
1 parent 5b2d288 commit 5f91932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ configure(subprojects.findAll { !unpublished.contains(it.name) }) {
258258
tasks.withType(dokka.getClass()) {
259259
externalDocumentationLink {
260260
url = new URL(core_docs_url)
261-
packageListUrl = new URL("file://$core_docs_file")
261+
packageListUrl = new File(core_docs_file).toURI().toURL()
262262
}
263263
}
264264
}

0 commit comments

Comments
 (0)