Skip to content

Commit

Permalink
Set explicit file permissions in NoticeTask (#99206) (#99255)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders authored Sep 6, 2023
1 parent fff235b commit 9ce5484
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions distribution/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,13 @@ configure(subprojects.findAll { ['archives', 'packages'].contains(it.name) }) {
from buildServerNoticeTaskProvider
} else {
if (jdk) {
from buildDefaultNoticeTaskProvider
from(buildDefaultNoticeTaskProvider) {
fileMode = 0644
}
} else {
from buildDefaultNoJdkNoticeTaskProvider
from(buildDefaultNoJdkNoticeTaskProvider) {
fileMode = 0644
}
}
}
}
Expand Down

0 comments on commit 9ce5484

Please sign in to comment.