diff options
author | Jordan Harband <ljharb@gmail.com> | 2022-08-31 20:41:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-31 20:41:56 +0200 |
commit | a20b1d4669d8d032fe35347bd3cfdae58b4d1d97 (patch) | |
tree | e3d3bd388510ae4f6ced8fef2184191b4b91dee0 /cmd | |
parent | support runner.arch (#1290) (diff) | |
download | forgejo-act-a20b1d4669d8d032fe35347bd3cfdae58b4d1d97.tar.xz forgejo-act-a20b1d4669d8d032fe35347bd3cfdae58b4d1d97.zip |
help output: use consistent terminology between `-j` & `-l` (#1326)v0.2.31
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/root.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/root.go b/cmd/root.go index 73c1764..646ca99 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") |