mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 00:29:01 +00:00
Merge pull request #46408 from izeye
* gh-46408: Fix BootZipCopyAction.Processor.getDirMode(FileCopyDetails) Closes gh-46408
This commit is contained in:
+1
-1
@@ -487,7 +487,7 @@ class BootZipCopyAction implements CopyAction {
|
||||
}
|
||||
|
||||
private int getDirMode(FileCopyDetails details) {
|
||||
return (BootZipCopyAction.this.fileMode != null) ? BootZipCopyAction.this.dirMode : getPermissions(details);
|
||||
return (BootZipCopyAction.this.dirMode != null) ? BootZipCopyAction.this.dirMode : getPermissions(details);
|
||||
}
|
||||
|
||||
private int getFileMode(FileCopyDetails details) {
|
||||
|
||||
Reference in New Issue
Block a user