Build: Fix zipCidrPlugin destination file name, missed zip extension
This commit is contained in:
+1
-1
@@ -581,7 +581,7 @@ val cidrPlugin by task<Copy> {
|
|||||||
|
|
||||||
val zipCidrPlugin by task<Zip> {
|
val zipCidrPlugin by task<Zip> {
|
||||||
val destPath = project.findProperty("pluginZipPath") as String?
|
val destPath = project.findProperty("pluginZipPath") as String?
|
||||||
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR"
|
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR.zip"
|
||||||
val destFile = File(destPath)
|
val destFile = File(destPath)
|
||||||
|
|
||||||
destinationDir = destFile.parentFile
|
destinationDir = destFile.parentFile
|
||||||
|
|||||||
@@ -580,7 +580,7 @@ val cidrPlugin by task<Copy> {
|
|||||||
|
|
||||||
val zipCidrPlugin by task<Zip> {
|
val zipCidrPlugin by task<Zip> {
|
||||||
val destPath = project.findProperty("pluginZipPath") as String?
|
val destPath = project.findProperty("pluginZipPath") as String?
|
||||||
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR"
|
?: "$distDir/artifacts/kotlin-plugin-$kotlinVersion-CIDR.zip"
|
||||||
val destFile = File(destPath)
|
val destFile = File(destPath)
|
||||||
|
|
||||||
destinationDir = destFile.parentFile
|
destinationDir = destFile.parentFile
|
||||||
|
|||||||
Reference in New Issue
Block a user