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 3cd9d15 commit 199e42aCopy full SHA for 199e42a
common/src/main/kotlin/com/lambda/task/tasks/BuildTask.kt
@@ -107,13 +107,14 @@ class BuildTask @Ta5kBuilder constructor(
107
.sorted()
108
109
val bestResult = resultsNotBlocked.firstOrNull() ?: return@listen
110
+ if (bestResult !is BuildResult.Contextual && pendingInteractions.isNotEmpty())
111
+ return@listen
112
when (bestResult) {
113
is BuildResult.Done,
114
is BuildResult.Ignored,
115
is BuildResult.Unbreakable,
116
is BuildResult.Restricted,
117
is BuildResult.NoPermission -> {
- if (pendingInteractions.isNotEmpty()) return@listen
118
if (blueprint is PropagatingBlueprint) {
119
blueprint.next()
120
return@listen
0 commit comments