Skip to content

Commit

Permalink
Switch to new file permission DSL
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Jun 5, 2024
1 parent e0bc222 commit dfc392a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,12 @@ if (project in mavenizedProjects) {
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
dirMode = Integer.parseInt("0755", 8)
fileMode = Integer.parseInt("0644", 8)
dirPermissions {
unix("rwxr-xr-x")
}
filePermissions {
unix("rw-r--r--")
}
}

normalization {
Expand Down

0 comments on commit dfc392a

Please sign in to comment.