Only include PNG files in reference manual

The `images` folder contains some files used to create the images, such
as OmniGraffle and SVG.

This commit modifies the `include` pattern to ensure that only `*.png`
files are copied from the source folder to the published reference
manual.
This commit is contained in:
Sam Brannen 2020-04-29 17:14:11 +02:00
parent 69b4f33cfa
commit 65e8d85142
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ asciidoctor {
outputDir "$buildDir/docs/ref-docs/"
resources {
from(sourceDir) {
include 'images/*', 'css/**', 'js/**'
include 'images/*.png', 'css/**', 'js/**'
}
from extractDocResources
}