Skip to content

Commit e5862c6

Browse files
izeyewilkinsona
authored andcommitted
Fix BootZipCopyAction.Processor.getDirMode(FileCopyDetails)
See gh-46408 Signed-off-by: Johnny Lim <[email protected]>
1 parent 5f550a6 commit e5862c6

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/BootZipCopyAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ private int getFileMode() {
487487
}
488488

489489
private int getDirMode(FileCopyDetails details) {
490-
return (BootZipCopyAction.this.fileMode != null) ? BootZipCopyAction.this.dirMode : getPermissions(details);
490+
return (BootZipCopyAction.this.dirMode != null) ? BootZipCopyAction.this.dirMode : getPermissions(details);
491491
}
492492

493493
private int getFileMode(FileCopyDetails details) {

0 commit comments

Comments
 (0)