I have the follow Gradle task which does packaging. In which it produces a zip file. However I am trying create a empty folder call log within the zip file as part of final dist
I do something like this:
package.doFirst { new File(buildDir, 'log/log').mkdirs() }