This is an automated email from the ASF dual-hosted git repository.

matrei pushed a commit to branch refactor-and-plugins
in repository https://gitbox.apache.org/repos/asf/grails-static-website.git

commit 3af73586f3d4046b0078fc3875d07b47152bbef6
Author: Mattias Reichel <[email protected]>
AuthorDate: Wed Feb 4 17:07:46 2026 +0100

    Typo
---
 buildSrc/src/main/groovy/website/gradle/tasks/BlogTask.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildSrc/src/main/groovy/website/gradle/tasks/BlogTask.groovy 
b/buildSrc/src/main/groovy/website/gradle/tasks/BlogTask.groovy
index 64b6843565f..4d1eb34778a 100644
--- a/buildSrc/src/main/groovy/website/gradle/tasks/BlogTask.groovy
+++ b/buildSrc/src/main/groovy/website/gradle/tasks/BlogTask.groovy
@@ -313,7 +313,7 @@ class BlogTask extends GrailsWebsiteTask {
             def html = renderPostHtml(post, templateText, listOfPosts)
             new File(outputDir, post.path).tap {
                 it.parentFile?.mkdirs()
-                it.setText(text, 'UTF-8')
+                it.setText(html, 'UTF-8')
             }
             parseTags(html).each { tag ->
                 tagsCount[tag] = tagsCount[tag] + 1

Reply via email to