Skip to content

Commit 299da9d

Browse files
authored
Set explicit file permissions in NoticeTask (#99206) (#99251)
(cherry picked from commit 0ec47aa)
1 parent 6a1903a commit 299da9d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

distribution/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,9 @@ configure(subprojects.findAll { ['archives', 'packages'].contains(it.name) }) {
411411
if (testDistro) {
412412
from buildServerNoticeTaskProvider
413413
} else {
414-
from buildDefaultNoticeTaskProvider
414+
from (buildDefaultNoticeTaskProvider) {
415+
fileMode = 0644
416+
}
415417
}
416418
}
417419
}

0 commit comments

Comments
 (0)