From f987fe06931448dfbb39ff21e76b96f3f8c20d78 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Wed, 9 Mar 2022 10:21:49 -0800 Subject: [PATCH] dagger do: fix --help regression caused by #1725 Signed-off-by: Andrea Luzzardi --- plan/plan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plan/plan.go b/plan/plan.go index 662ec07c..fe8b9e10 100644 --- a/plan/plan.go +++ b/plan/plan.go @@ -183,7 +183,7 @@ func (p *Plan) fillAction() { } actions := p.source.LookupPath(cue.MakePath(ActionSelector)) - if actions.Exists() { + if !actions.Exists() { return } for _, cg := range actions.Doc() {