From 6f09819e9ff31d877caefa74f92ee3547008f682 Mon Sep 17 00:00:00 2001 From: Irena Rindos Date: Wed, 8 May 2024 11:52:16 -0400 Subject: [PATCH] chore: fix workers tag cmd help strings (#4780) --- internal/cmd/commands/workerscmd/funcs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cmd/commands/workerscmd/funcs.go b/internal/cmd/commands/workerscmd/funcs.go index 99d38d6fb2..8fa2614d2c 100644 --- a/internal/cmd/commands/workerscmd/funcs.go +++ b/internal/cmd/commands/workerscmd/funcs.go @@ -60,7 +60,7 @@ func (c *Command) extraHelpFunc(helpMap map[string]func() string) string { }) case "add-worker-tags": helpStr = base.WrapForHelpText([]string{ - "Usage: boundary workers add-worker-tags [sub command] [args]", + "Usage: boundary workers add-worker-tags [options] [args]", "", " This command allows adding api tags to worker resources. Example:", "", @@ -72,7 +72,7 @@ func (c *Command) extraHelpFunc(helpMap map[string]func() string) string { }) case "set-worker-tags": helpStr = base.WrapForHelpText([]string{ - "Usage: boundary workers set-worker-tags [sub command] [args]", + "Usage: boundary workers set-worker-tags [options] [args]", "", " This command allows setting api tags for worker resources. Example:", "", @@ -84,7 +84,7 @@ func (c *Command) extraHelpFunc(helpMap map[string]func() string) string { }) case "remove-worker-tags": helpStr = base.WrapForHelpText([]string{ - "Usage: boundary workers remove-worker-tags [sub command] [args]", + "Usage: boundary workers remove-worker-tags [options] [args]", "", " This command allows removing api tags from worker resources. Example:", "",