From a20b1d4669d8d032fe35347bd3cfdae58b4d1d97 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Wed, 31 Aug 2022 11:41:56 -0700 Subject: [PATCH] help output: use consistent terminology between `-j` & `-l` (#1326) --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 73c1764f..646ca996 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -41,7 +41,7 @@ func Execute(ctx context.Context, version string) { rootCmd.Flags().BoolP("watch", "w", false, "watch the contents of the local repo and run when files change") rootCmd.Flags().BoolP("list", "l", false, "list workflows") rootCmd.Flags().BoolP("graph", "g", false, "draw workflows") - rootCmd.Flags().StringP("job", "j", "", "run job") + rootCmd.Flags().StringP("job", "j", "", "run a specific job ID") rootCmd.Flags().BoolP("bug-report", "", false, "Display system information for bug report") rootCmd.Flags().StringVar(&input.remoteName, "remote-name", "origin", "git remote name that will be used to retrieve url of git repo")