Fix deprecation warning in build script (#11642)
This commit is contained in:
parent
622d8eda0e
commit
028a5c0e4e
|
@ -294,8 +294,12 @@ tasks {
|
|||
withType<AbstractArchiveTask>().configureEach {
|
||||
isPreserveFileTimestamps = false
|
||||
isReproducibleFileOrder = true
|
||||
dirMode = Integer.parseInt("0755", 8)
|
||||
fileMode = Integer.parseInt("0644", 8)
|
||||
dirPermissions {
|
||||
unix("755")
|
||||
}
|
||||
filePermissions {
|
||||
unix("644")
|
||||
}
|
||||
}
|
||||
|
||||
// Convenient when updating errorprone
|
||||
|
|
Loading…
Reference in New Issue