summaryrefslogtreecommitdiff
path: root/internal/askcli/command_complete_uuids.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-26 23:37:59 +0200
committerPaul Buetow <paul@buetow.org>2026-03-26 23:37:59 +0200
commitd4bdc94f5b29a9baa8517acd2d363383e1e3ee53 (patch)
tree42ff2f918d9ce5be39d7acf1e4cad72af4defa79 /internal/askcli/command_complete_uuids.go
parenteb978df1bcb6ccca3d9d0233ea53b9a2186ae18b (diff)
Implement ask alias cache foundation for d5a99b1b-13f3-4b73-8222-71f012c60bc9
Diffstat (limited to 'internal/askcli/command_complete_uuids.go')
-rw-r--r--internal/askcli/command_complete_uuids.go3
1 files changed, 3 insertions, 0 deletions
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