Browse Source

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.
pull/25006/head
Sam Brannen 5 years ago
parent
commit
65e8d85142
  1. 2
      gradle/docs.gradle

2
gradle/docs.gradle

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

Loading…
Cancel
Save