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
1 changed files with 3 additions and 0 deletions

View File

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