summaryrefslogtreecommitdiff
path: root/internal/askcli/command_delete.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-27 06:19:31 +0200
committerPaul Buetow <paul@buetow.org>2026-03-27 06:19:31 +0200
commit6b964400deb653d2c47aa8932ab5444346833b0d (patch)
treefdb9166624b91fa11cfa1e9b4a2ca3ad63bf9739 /internal/askcli/command_delete.go
parentb67069c110c210b05507fca839d45b43431f5e86 (diff)
askcli: show task aliases in output (cd322ed1-882d-40e9-ab98-689acd5f161e)
Diffstat (limited to 'internal/askcli/command_delete.go')
-rw-r--r--internal/askcli/command_delete.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/askcli/command_delete.go b/internal/askcli/command_delete.go
index 64bcdfc..24753d5 100644
--- a/internal/askcli/command_delete.go
+++ b/internal/askcli/command_delete.go
@@ -21,6 +21,6 @@ func (d Dispatcher) handleDelete(ctx context.Context, args []string, stdin io.Re
if code != 0 {
return code, err
}
- io.WriteString(stdout, FormatSuccess(resolved.UUID))
+ io.WriteString(stdout, FormatSuccess(displayResolvedTaskID(resolved)))
return 0, nil
}