Skip to content

Commit ab34ff6

Browse files
committed
Check error code 405 in boot tasks
1 parent f712e53 commit ab34ff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-plugins/kmp-conventions/src/main/kotlin/aws/sdk/kotlin/gradle/kmp/ConfigureIosSimulator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public fun Project.configureIosSimulatorTasks() {
2727
doLast {
2828
val result = executionResult.get()
2929
val code = result.exitValue
30-
if (code != 148 && code != 149) { // ignore "simulator already running" errors
30+
if (code != 148 && code != 149 && code != 405) { // ignore "simulator already running" errors
3131
result.assertNormalExitValue()
3232
}
3333
}

0 commit comments

Comments
 (0)