From 65e8d851422bf04d62a26f7ea61b03a7e27d1ddf Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 29 Apr 2020 17:14:11 +0200 Subject: [PATCH] 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. --- gradle/docs.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/docs.gradle b/gradle/docs.gradle index e08f4c6af0..4fee5c28c8 100644 --- a/gradle/docs.gradle +++ b/gradle/docs.gradle @@ -145,7 +145,7 @@ asciidoctor { outputDir "$buildDir/docs/ref-docs/" resources { from(sourceDir) { - include 'images/*', 'css/**', 'js/**' + include 'images/*.png', 'css/**', 'js/**' } from extractDocResources }