Build: Fix zipCidrPlugin destination file name, missed zip extension

This commit is contained in:
Vyacheslav Gerasimov
2018-05-08 01:05:13 +03:00
parent 3aab68d635
commit 8773e2d6f3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -581,7 +581,7 @@ val cidrPlugin by task<Copy> {
val zipCidrPlugin by task<Zip> {
val destPath = project.findProperty("pluginZipPath") as String?
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR"
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR.zip"
val destFile = File(destPath)
destinationDir = destFile.parentFile
+1 -1
View File
@@ -580,7 +580,7 @@ val cidrPlugin by task<Copy> {
val zipCidrPlugin by task<Zip> {
val destPath = project.findProperty("pluginZipPath") as String?
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR"
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR.zip"
val destFile = File(destPath)
destinationDir = destFile.parentFile