summaryrefslogtreecommitdiff
path: root/internal/askcli/command_dep.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-27 06:51:24 +0200
committerPaul Buetow <paul@buetow.org>2026-03-27 06:51:24 +0200
commitf19a4740992f3fd5f6d2f8b13850c9eb637f6a76 (patch)
tree5296cf52515636ebb43987fd87564ff2f99e6d2b /internal/askcli/command_dep.go
parent426b836d03078a5e438319d0d2a90d9d2a93430b (diff)
fix ask alias output wording 7f53c2ff-4eb0-4c7e-bf90-f44587364f4a
Diffstat (limited to 'internal/askcli/command_dep.go')
-rw-r--r--internal/askcli/command_dep.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/askcli/command_dep.go b/internal/askcli/command_dep.go
index 0508b39..adfb232 100644
--- a/internal/askcli/command_dep.go
+++ b/internal/askcli/command_dep.go
@@ -27,7 +27,7 @@ func (d Dispatcher) handleDep(ctx context.Context, args []string, stdout, stderr
func (d Dispatcher) handleDepAddRm(ctx context.Context, args []string, stdout, stderr io.Writer) (int, error) {
if len(args) < 4 {
- io.WriteString(stderr, "error: ask dep add/rm requires <uuid> <dep-uuid>\n")
+ io.WriteString(stderr, "error: ask dep add/rm requires <id|uuid> <dep-id|dep-uuid>\n")
return 1, nil
}
resolved, _, code, err := d.resolveTaskSelector(ctx, args[2], stderr)
@@ -59,7 +59,7 @@ func (d Dispatcher) handleDepAddRm(ctx context.Context, args []string, stdout, s
func (d Dispatcher) handleDepList(ctx context.Context, args []string, stdout, stderr io.Writer) (int, error) {
if len(args) < 3 {
- io.WriteString(stderr, "error: ask dep list requires <uuid>\n")
+ io.WriteString(stderr, "error: ask dep list requires <id|uuid>\n")
return 1, nil
}
_, tasks, code, err := d.resolveTaskSelector(ctx, args[2], stderr)