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 913251b commit 707c047Copy full SHA for 707c047
documentation/documentation.gradle.kts
@@ -447,11 +447,10 @@ tasks {
447
448
val createCurrentDocsFolder by registering(Copy::class) {
449
dependsOn(prepareDocsForUploadToGhPages)
450
- outputs.dir("$docsDir/current")
451
onlyIf { replaceCurrentDocs }
452
453
- from("$docsDir/$docsVersion")
454
- into("$docsDir/current")
+ from(docsDir.map { it.dir(docsVersion.toString()) })
+ into(docsDir.map { it.dir("current") })
455
}
456
457
val configureGitAuthor by registering {
0 commit comments