Skip to content

Commit 9477004

Browse files
committed
Update archiveName to archiveFileName and fix fileMode literal
1 parent 7948d85 commit 9477004

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

grammars/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ task distZip(type: Zip) {
22
from(projectDir) {
33
include '*.json'
44
}
5-
archiveName = "${project.name}.zip"
5+
archiveFileName = "${project.name}.zip"
66
destinationDirectory = file("$buildDir/distributions")
77
}

server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ configurations.all { config ->
7979
}
8080

8181
applicationDistribution.into('bin') {
82-
fileMode = 0755
82+
fileMode = 755
8383
}
8484

8585
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
@@ -148,7 +148,7 @@ test {
148148
}
149149

150150
distZip {
151-
archiveName = "${project.name}.zip"
151+
archiveFileName = "${project.name}.zip"
152152
}
153153

154154
compileKotlin.dependsOn copyKotlinJVMLib

0 commit comments

Comments
 (0)