aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnatBeresnev <ignat.beresnev@jetbrains.com>2023-11-10 13:33:17 +0100
committerIgnatBeresnev <ignat.beresnev@jetbrains.com>2023-11-10 13:33:17 +0100
commit4322f755c90622ed9a8ad7b9f471cd86482de03f (patch)
treebb66731759b52110e21f3c8700538f4dbd6d6745
parent6704f158b0081db0f28f73d32c0debe1540f6256 (diff)
downloaddokka-4322f755c90622ed9a8ad7b9f471cd86482de03f.tar.gz
dokka-4322f755c90622ed9a8ad7b9f471cd86482de03f.tar.bz2
dokka-4322f755c90622ed9a8ad7b9f471cd86482de03f.zip
Fix developer docs being redirected to the SNAPSHOT version
Fixes a mistake introduced in #3174
-rw-r--r--docs-developer/build.gradle.kts6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs-developer/build.gradle.kts b/docs-developer/build.gradle.kts
index d611a097..b80cf5c9 100644
--- a/docs-developer/build.gradle.kts
+++ b/docs-developer/build.gradle.kts
@@ -6,10 +6,10 @@ plugins {
id("ru.vyarus.mkdocs") version "2.4.0"
}
-if (!project.version.toString().endsWith("-SNAPSHOT")) {
+if (project.version.toString().endsWith("-SNAPSHOT")) {
// Do not generate the root index.html file with the redirect
- // to a non-release version, otherwise GitHub pages based documentation
- // will always lead to the non-stable documentation.
+ // to a snapshot version, otherwise GitHub Pages-based documentation
+ // will always lead to the non-yet-released documentation.
// For more details, see https://github.com/Kotlin/dokka/issues/2869.
// For configuration details, see https://xvik.github.io/gradle-mkdocs-plugin/3.0.0/examples/#simple-multi-version.
mkdocs.publish.rootRedirect = false