We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1074db commit a03aa89Copy full SHA for a03aa89
1 file changed
app/build.gradle.kts
@@ -187,6 +187,9 @@ tasks.register<Copy>("unzipWebsiteExamples") {
187
include("processing-website-main/content/examples/**")
188
eachFile { relativePath = RelativePath(true, *relativePath.segments.drop(3).toTypedArray()) }
189
includeEmptyDirs = false
190
+ exclude {
191
+ it.name.contains(".es.") || it.name == "liveSketch.js"
192
+ }
193
}
194
into(layout.buildDirectory.dir("resources-bundled/common/modes/java/examples"))
195
0 commit comments