Skip to content

Commit 037755e

Browse files
committed
Merge pull request #46408 from izeye
* gh-46408: Fix BootZipCopyAction.Processor.getDirMode(FileCopyDetails) Closes gh-46408
2 parents 5f550a6 + e5862c6 commit 037755e

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)