mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 04:12:06 +01:00
Fix reproducible builds by specifying file and directory modes for archive tasks
This commit is contained in:
parent
57743383e5
commit
73da2cc889
1 changed files with 3 additions and 0 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue