Skip to content

Commit

Permalink
fix(grailsdocs): Update PublishGuide task for grails-doc (#13458)
Browse files Browse the repository at this point in the history
Fix the PublishGuide task in the grails-doc project to use 'docs' as the output directory name for the grailsdoc submodule instead of 'doc'. This change ensures consistency in directory naming conventions within the grails-doc project.
  • Loading branch information
Puneet Behl committed Apr 23, 2024
1 parent 795727d commit 82d3d41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class PublishGuide extends DefaultTask {

@Nested Collection macros = []

@OutputDirectory File targetDir = project.layout.buildDirectory.dir("doc").get().asFile
@OutputDirectory File targetDir = project.layout.buildDirectory.dir("docs").get().asFile

@TaskAction
def publishGuide() {
Expand Down

0 comments on commit 82d3d41

Please sign in to comment.