Fixed result condition

dev
Víctor Zamanillo 2020-09-19 22:13:11 +02:00
parent 407a89acd2
commit 650d71781a
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ func (r *Runner) processWorkflowWithList(p progress.IProgress, workflow *workflo
}
for _, variable := range variables {
result = variable.IsFalsy()
result = !variable.IsFalsy()
if result {
break
}