Skip to content

Commit cfee3b4

Browse files
committed
Fix casing of artifact dir
1 parent bfbf4c9 commit cfee3b4

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

buildSrc/src/main/java/Publication.kt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
5050
withJavadoc("jvm")
5151
}
5252
}
53-
this.maybeCreate("iosArm64").contents {
53+
this.maybeCreate("iosarm64").contents {
5454
from("build${sep}publications${sep}iosArm64") {
5555
renameModule("iosarm64", version)
5656
}
@@ -60,7 +60,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
6060
}
6161
fromKlib("iosArm64", version)
6262
}
63-
this.maybeCreate("iosX64").contents {
63+
this.maybeCreate("iosx64").contents {
6464
from("build${sep}publications${sep}iosX64") {
6565
renameModule("iosx64", version)
6666
}
@@ -70,17 +70,17 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
7070
}
7171
fromKlib("iosX64", version)
7272
}
73-
this.maybeCreate("iosSimulatorArm64").contents {
73+
this.maybeCreate("iossimulatorarm64").contents {
7474
from("build${sep}publications${sep}iosSimulatorArm64") {
7575
renameModule("iossimulatorarm64", version)
7676
}
7777
from("build${sep}libs$sep") {
7878
include("sentry-kotlin-multiplatform-iossimulatorarm64*")
7979
withJavadoc("iossimulatorarm64")
8080
}
81-
fromKlib("iosSimulatorArm64", version)
81+
fromKlib("iossimulatorarm64", version)
8282
}
83-
this.maybeCreate("macosArm64").contents {
83+
this.maybeCreate("macosarm64").contents {
8484
from("build${sep}publications${sep}macosArm64") {
8585
renameModule("macosarm64", version)
8686
}
@@ -90,7 +90,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
9090
}
9191
fromKlib("macosArm64", version)
9292
}
93-
this.maybeCreate("macosX64").contents {
93+
this.maybeCreate("macosx64").contents {
9494
from("build${sep}publications${sep}macosX64") {
9595
renameModule("macosx64", version)
9696
}
@@ -100,7 +100,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
100100
}
101101
fromKlib("macosX64", version)
102102
}
103-
this.maybeCreate("watchosX64").contents {
103+
this.maybeCreate("watchosx64").contents {
104104
from("build${sep}publications${sep}watchosX64") {
105105
renameModule("watchosx64", version)
106106
}
@@ -110,7 +110,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
110110
}
111111
fromKlib("watchosX64", version)
112112
}
113-
this.maybeCreate("watchosArm32").contents {
113+
this.maybeCreate("watchosarm32").contents {
114114
from("build${sep}publications${sep}watchosArm32") {
115115
renameModule("watchosarm32", version)
116116
}
@@ -120,7 +120,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
120120
}
121121
fromKlib("watchosArm32", version)
122122
}
123-
this.maybeCreate("watchosArm64").contents {
123+
this.maybeCreate("watchosarm64").contents {
124124
from("build${sep}publications${sep}watchosArm64") {
125125
renameModule("watchosarm64", version)
126126
}
@@ -130,7 +130,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
130130
}
131131
fromKlib("watchosArm64", version)
132132
}
133-
this.maybeCreate("watchosSimulatorArm64").contents {
133+
this.maybeCreate("watchossimulatorarm64").contents {
134134
from("build${sep}publications${sep}watchosSimulatorArm64") {
135135
renameModule("watchossimulatorarm64", version)
136136
}
@@ -140,7 +140,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
140140
}
141141
fromKlib("watchosSimulatorArm64", version)
142142
}
143-
this.maybeCreate("tvosArm64").contents {
143+
this.maybeCreate("tvosarm64").contents {
144144
from("build${sep}publications${sep}tvosArm64") {
145145
renameModule("tvosarm64", version)
146146
}
@@ -150,7 +150,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
150150
}
151151
fromKlib("tvosArm64", version)
152152
}
153-
this.maybeCreate("tvosX64").contents {
153+
this.maybeCreate("tvosx64").contents {
154154
from("build${sep}publications${sep}tvosX64") {
155155
renameModule("tvosx64", version)
156156
}
@@ -160,7 +160,7 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
160160
}
161161
fromKlib("tvosX64", version)
162162
}
163-
this.maybeCreate("tvosSimulatorArm64").contents {
163+
this.maybeCreate("tvossimulatorarm64").contents {
164164
from("build${sep}publications${sep}tvosSimulatorArm64") {
165165
renameModule("tvossimulatorarm64", version)
166166
}

0 commit comments

Comments
 (0)