From d4bdc94f5b29a9baa8517acd2d363383e1e3ee53 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 26 Mar 2026 23:37:59 +0200 Subject: Implement ask alias cache foundation for d5a99b1b-13f3-4b73-8222-71f012c60bc9 --- internal/askcli/command_complete_uuids.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'internal/askcli/command_complete_uuids.go') diff --git a/internal/askcli/command_complete_uuids.go b/internal/askcli/command_complete_uuids.go index 99f1e0e..755c3bb 100644 --- a/internal/askcli/command_complete_uuids.go +++ b/internal/askcli/command_complete_uuids.go @@ -18,6 +18,9 @@ func (d Dispatcher) handleCompleteUUIDs(ctx context.Context, stdout, stderr io.W fmt.Fprintf(stderr, "error: failed to parse task data: %v\n", err) return 1, nil } + if _, err := ensureTaskAliases(tasks); err != nil { + fmt.Fprintf(stderr, "warning: failed to update task alias cache: %v\n", err) + } for _, task := range tasks { if task.UUID == "" { continue -- cgit v1.2.3