From 650d71781a64aa36fcecc97c5a34b0257f6d79c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Zamanillo?= Date: Sat, 19 Sep 2020 22:13:11 +0200 Subject: [PATCH] Fixed result condition --- internal/runner/processor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/runner/processor.go b/internal/runner/processor.go index 1bc722c82..1ce282ee4 100644 --- a/internal/runner/processor.go +++ b/internal/runner/processor.go @@ -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 }