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 f712e53 commit ab34ff6Copy full SHA for ab34ff6
build-plugins/kmp-conventions/src/main/kotlin/aws/sdk/kotlin/gradle/kmp/ConfigureIosSimulator.kt
@@ -27,7 +27,7 @@ public fun Project.configureIosSimulatorTasks() {
27
doLast {
28
val result = executionResult.get()
29
val code = result.exitValue
30
- if (code != 148 && code != 149) { // ignore "simulator already running" errors
+ if (code != 148 && code != 149 && code != 405) { // ignore "simulator already running" errors
31
result.assertNormalExitValue()
32
}
33
0 commit comments