Fixed first-time packaging issue in build script

This commit is contained in:
2022-01-09 21:02:56 +03:00
parent 162b2249b1
commit fe01e1b81c
4 changed files with 34 additions and 46 deletions

View File

@@ -36,6 +36,10 @@ task packageZip(type: Zip) {
archiveVersion = project.version
}
doFirst {
mkdir 'build/packages'
}
from 'build/tmp/packaging/workingDir'
destinationDirectory = file('build/packages')
}