Skip to content

Commit 92b9569

Browse files
committed
Also disable JVM signing
1 parent e4475e5 commit 92b9569

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

aws-crt-kotlin/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ tasks.withType<Sign>().configureEach {
106106
if (name.contains("ios", ignoreCase = true)) {
107107
enabled = false
108108
}
109+
110+
// Also disable JVM, which has the same issue... for some reason...
111+
if (name.contains("jvm", ignoreCase = true)) {
112+
enabled = false
113+
}
109114
}
110115

111116
val linuxTargets: List<String> = listOf(

0 commit comments

Comments
 (0)