We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0f16d6 commit cea3781Copy full SHA for cea3781
spring-boot-project/spring-boot-cli/build.gradle
@@ -131,10 +131,10 @@ def configureArchive(archive) {
131
into "lib/"
132
}
133
archive.from(file("src/main/content")) {
134
- eachFile { it.mode = it.directory ? 0x755 : 0x644 }
+ eachFile { it.mode = it.directory ? 0755 : 0644 }
135
136
archive.from(file("src/main/executablecontent")) {
137
- eachFile { it.mode = 0x755 }
+ eachFile { it.mode = 0755 }
138
139
140
0 commit comments