Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 328a278

Browse files
committed
Fix docsZip input directory
It changed after the upgrade to 7.2 (asciidoctor configuration). References #169
1 parent 2bd7d1a commit 328a278

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gradle/asciidoc.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ configure(rootProject) {
6969
archiveClassifier.set('docs')
7070
afterEvaluate() {
7171
//we copy the pdf late, when a potential customVersion has been applied to rootProject
72-
from("$buildDir/asciidoc/pdf/index.pdf") {
72+
from("$buildDir/docs/asciidoc/pdf/index.pdf") {
7373
into ("docs/")
7474
rename("index.pdf", "reactor-rabbitmq-reference-guide-${rootProject.version}.pdf")
7575
}
7676
}
77-
from("$buildDir/asciidoc/html5/index.html") { into("docs/") }
78-
from("$buildDir/asciidoc/html5/images") { into("images/") }
77+
from("$buildDir/docs/asciidoc/html5/index.html") { into("docs/") }
78+
from("$buildDir/docs/asciidoc/html5/images") { into("images/") }
7979
}
8080
}
8181

0 commit comments

Comments
 (0)