stdlib-docs: dokka can't stand windows path separator in sourcelink path

This commit is contained in:
Ilya Gorbunov
2021-08-13 03:38:15 +03:00
committed by Space
parent 3e82a20f16
commit aba0c715bd
@@ -3,7 +3,7 @@ apply plugin: 'base'
final boolean isTeamcityBuild = System.getenv("TEAMCITY_VERSION") != null
// kotlin/libraries/tools/kotlin-stdlib-docs -> kotlin
final String kotlinRootDir = rootProject.file("../../../").absolutePath
final String kotlinRootDir = rootProject.file("../../../").absolutePath.replace('\\', '/')
final String kotlinLibsDir = "$buildDir/libs"
final String githubRevision = isTeamcityBuild ? project.property("githubRevision") : "master"