mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
Fix Dokka classpath.
This commit is contained in:
parent
802325c16a
commit
b94dafe512
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ class DokkaPlugin @Inject constructor(val depFactory: DepFactory) : ConfigPlugin
|
|||
.joinToString(File.pathSeparator)
|
||||
val dokkaJar = JarFinder.byId(DOKKA_ID)
|
||||
if (config != null) {
|
||||
val args = listOf(
|
||||
val args : List<String> = listOf(
|
||||
"-classpath", classpathString,
|
||||
"-jar", dokkaJar,
|
||||
"-jar", dokkaJar.absolutePath,
|
||||
"src/main/kotlin") +
|
||||
config.args
|
||||
RunCommand(javaExecutable.absolutePath).run(args, successCallback = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue