1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-13 15:15:04 +02:00

Fix reproducible builds by specifying file and directory modes for archive tasks

This commit is contained in:
Paul Schaub 2022-06-19 22:14:11 +02:00
parent 57743383e5
commit 73da2cc889
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -69,6 +69,9 @@ allprojects {
tasks.withType(AbstractArchiveTask) { tasks.withType(AbstractArchiveTask) {
preserveFileTimestamps = false preserveFileTimestamps = false
reproducibleFileOrder = true reproducibleFileOrder = true
dirMode = 0755
fileMode = 0644
} }
project.ext { project.ext {