Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions build-logic/src/main/kotlin/polaris-reproducible.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,15 @@
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true

dirPermissions { unix("755") }
filePermissions {
// do not force the "execute" bit in case the file _is_ executable
user.read = true
user.write = true
group.read = true
group.write = false
other.read = true
other.write = false
}
}