From 6987c638f4cdd9276a803de82d046c96cf2400c8 Mon Sep 17 00:00:00 2001 From: Jean-Yves NOLEN Date: Thu, 2 Oct 2025 12:59:29 +0200 Subject: [PATCH] fix: make list tasks dry to avoid override checksum --- help.go | 1 + 1 file changed, 1 insertion(+) diff --git a/help.go b/help.go index 9998bd38ad..6c42ec598e 100644 --- a/help.go +++ b/help.go @@ -60,6 +60,7 @@ func (o ListOptions) Filters() []FilterFunc { // The function returns a boolean indicating whether tasks were found // and an error if one was encountered while preparing the output. func (e *Executor) ListTasks(o ListOptions) (bool, error) { + e.Dry = true tasks, err := e.GetTaskList(o.Filters()...) if err != nil { return false, err