Skip to content

Commit

Permalink
Fix file permissions in the CLI's zip and tar distributions
Browse files Browse the repository at this point in the history
Fixes gh-21451
  • Loading branch information
wilkinsona committed May 14, 2020
1 parent d0f16d6 commit cea3781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spring-boot-project/spring-boot-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ def configureArchive(archive) {
into "lib/"
}
archive.from(file("src/main/content")) {
eachFile { it.mode = it.directory ? 0x755 : 0x644 }
eachFile { it.mode = it.directory ? 0755 : 0644 }
}
archive.from(file("src/main/executablecontent")) {
eachFile { it.mode = 0x755 }
eachFile { it.mode = 0755 }
}
}

Expand Down

0 comments on commit cea3781

Please sign in to comment.