We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf02e2d commit 9db4e04Copy full SHA for 9db4e04
build.gradle.kts
@@ -96,9 +96,11 @@ private fun validateKotlinMultiplatformCoreArtifacts(project: Project) {
96
)
97
val listOfArtifactPaths = buildList {
98
add("$rootDistributionFilePath$sep$baseFileName-$version.zip")
99
- addAll(platforms.map { platform ->
100
- "$rootDistributionFilePath$sep$baseFileName-$platform-$version.zip"
101
- })
+ addAll(
+ platforms.map { platform ->
+ "$rootDistributionFilePath$sep$baseFileName-$platform-$version.zip"
102
+ }
103
+ )
104
}
105
106
listOfArtifactPaths.forEach { artifactPath ->
0 commit comments