BUILD update paths for asciidoc new output directory

This commit is contained in:
Remko Popma
2020-10-14 20:21:27 +09:00
parent 16a651b8bc
commit c5dbdc9916

View File

@@ -355,14 +355,13 @@ task bumpVersion {
}
}
task copyCodeGenDocs(type: Copy) {
from('build/docs/html5/man/') { include 'index.html' }
from('build/docs/man/') { include 'index.html' }
from('picocli-codegen/build/docs/html5/') { include '*.html' }
into 'docs/man'
}
task copyDocs(type: Copy) {
dependsOn(copyCodeGenDocs)
from('build/docs/html5/') { include '*.html' }
from('build/docs/') { exclude 'html5'}
from('build/docs/')
into 'docs'
}