From e243b99b915762844d01a45f19fcb8b753a1126d Mon Sep 17 00:00:00 2001 From: rsteube Date: Wed, 7 Feb 2024 22:20:30 +0100 Subject: [PATCH] tmp --- completers/brew_completer/cmd/audit.go | 7 ++++--- completers/brew_completer/cmd/bottle.go | 7 ++++--- completers/brew_completer/cmd/bump.go | 7 ++++--- completers/brew_completer/cmd/bumpCaskPr.go | 7 ++++--- completers/brew_completer/cmd/bumpFormulaPr.go | 7 ++++--- completers/brew_completer/cmd/bumpRevision.go | 7 ++++--- completers/brew_completer/cmd/bumpUnversionedCasks.go | 7 ++++--- completers/brew_completer/cmd/cat.go | 7 ++++--- completers/brew_completer/cmd/command.go | 7 ++++--- completers/brew_completer/cmd/contributions.go | 7 ++++--- completers/brew_completer/cmd/create.go | 7 ++++--- completers/brew_completer/cmd/determineTestRunners.go | 7 ++++--- completers/brew_completer/cmd/dispatchBuildBottle.go | 7 ++++--- completers/brew_completer/cmd/edit.go | 7 ++++--- completers/brew_completer/cmd/extract.go | 7 ++++--- completers/brew_completer/cmd/formula.go | 2 +- completers/brew_completer/cmd/generateCaskApi.go | 7 ++++--- completers/brew_completer/cmd/generateFormulaApi.go | 7 ++++--- completers/brew_completer/cmd/generateManCompletions.go | 7 ++++--- completers/brew_completer/cmd/installBundlerGems.go | 7 ++++--- completers/brew_completer/cmd/irb.go | 7 ++++--- completers/brew_completer/cmd/linkage.go | 7 ++++--- completers/brew_completer/cmd/livecheck.go | 7 ++++--- completers/brew_completer/cmd/prAutomerge.go | 7 ++++--- completers/brew_completer/cmd/prPublish.go | 7 ++++--- completers/brew_completer/cmd/prPull.go | 7 ++++--- completers/brew_completer/cmd/prUpload.go | 7 ++++--- completers/brew_completer/cmd/prof.go | 7 ++++--- completers/brew_completer/cmd/release.go | 7 ++++--- completers/brew_completer/cmd/ruby.go | 7 ++++--- completers/brew_completer/cmd/sh.go | 7 ++++--- completers/brew_completer/cmd/style.go | 7 ++++--- completers/brew_completer/cmd/tapNew.go | 7 ++++--- completers/brew_completer/cmd/test.go | 7 ++++--- completers/brew_completer/cmd/tests.go | 7 ++++--- completers/brew_completer/cmd/typecheck.go | 7 ++++--- completers/brew_completer/cmd/unbottled.go | 7 ++++--- completers/brew_completer/cmd/unpack.go | 7 ++++--- completers/brew_completer/cmd/updateLicenseData.go | 7 ++++--- completers/brew_completer/cmd/updateMaintainers.go | 7 ++++--- completers/brew_completer/cmd/updatePythonResources.go | 7 ++++--- completers/brew_completer/cmd/updateSponsors.go | 7 ++++--- completers/brew_completer/cmd/updateTest.go | 7 ++++--- completers/brew_completer/cmd/vendorGems.go | 7 ++++--- 44 files changed, 173 insertions(+), 130 deletions(-) diff --git a/completers/brew_completer/cmd/audit.go b/completers/brew_completer/cmd/audit.go index 4563990868..8c6c28695d 100644 --- a/completers/brew_completer/cmd/audit.go +++ b/completers/brew_completer/cmd/audit.go @@ -6,9 +6,10 @@ import ( ) var auditCmd = &cobra.Command{ - Use: "audit", - Short: "Check for Homebrew coding style violations", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "audit", + Short: "Check for Homebrew coding style violations", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/bottle.go b/completers/brew_completer/cmd/bottle.go index 7f11cedff5..4cc425f33d 100644 --- a/completers/brew_completer/cmd/bottle.go +++ b/completers/brew_completer/cmd/bottle.go @@ -6,9 +6,10 @@ import ( ) var bottleCmd = &cobra.Command{ - Use: "bottle", - Short: "Generate a bottle (binary package) from a formula that was installed with `--build-bottle`", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "bottle", + Short: "Generate a bottle (binary package) from a formula that was installed with `--build-bottle`", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/bump.go b/completers/brew_completer/cmd/bump.go index 1d42707865..7a530fe5bc 100644 --- a/completers/brew_completer/cmd/bump.go +++ b/completers/brew_completer/cmd/bump.go @@ -6,9 +6,10 @@ import ( ) var bumpCmd = &cobra.Command{ - Use: "bump", - Short: "Display out-of-date brew formulae and the latest version available", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "bump", + Short: "Display out-of-date brew formulae and the latest version available", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/bumpCaskPr.go b/completers/brew_completer/cmd/bumpCaskPr.go index f933489f2d..63dbcac66b 100644 --- a/completers/brew_completer/cmd/bumpCaskPr.go +++ b/completers/brew_completer/cmd/bumpCaskPr.go @@ -6,9 +6,10 @@ import ( ) var bumpCaskPrCmd = &cobra.Command{ - Use: "bump-cask-pr", - Short: "Create a pull request to update with a new version", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "bump-cask-pr", + Short: "Create a pull request to update with a new version", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/bumpFormulaPr.go b/completers/brew_completer/cmd/bumpFormulaPr.go index f0257071bb..70b248b2ac 100644 --- a/completers/brew_completer/cmd/bumpFormulaPr.go +++ b/completers/brew_completer/cmd/bumpFormulaPr.go @@ -6,9 +6,10 @@ import ( ) var bumpFormulaPrCmd = &cobra.Command{ - Use: "bump-formula-pr", - Short: "Create a pull request to update with a new URL or a new tag", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "bump-formula-pr", + Short: "Create a pull request to update with a new URL or a new tag", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/bumpRevision.go b/completers/brew_completer/cmd/bumpRevision.go index 4217660f9f..bd4dbe50c0 100644 --- a/completers/brew_completer/cmd/bumpRevision.go +++ b/completers/brew_completer/cmd/bumpRevision.go @@ -6,9 +6,10 @@ import ( ) var bumpRevisionCmd = &cobra.Command{ - Use: "bump-revision", - Short: "Create a commit to increment the revision of ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "bump-revision", + Short: "Create a commit to increment the revision of ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/bumpUnversionedCasks.go b/completers/brew_completer/cmd/bumpUnversionedCasks.go index c8adadce4e..3642b63d39 100644 --- a/completers/brew_completer/cmd/bumpUnversionedCasks.go +++ b/completers/brew_completer/cmd/bumpUnversionedCasks.go @@ -6,9 +6,10 @@ import ( ) var bumpUnversionedCasksCmd = &cobra.Command{ - Use: "bump-unversioned-casks", - Short: "Check all casks with unversioned URLs in a given for updates", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "bump-unversioned-casks", + Short: "Check all casks with unversioned URLs in a given for updates", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/cat.go b/completers/brew_completer/cmd/cat.go index 7b26bd9f2e..4889de1be1 100644 --- a/completers/brew_completer/cmd/cat.go +++ b/completers/brew_completer/cmd/cat.go @@ -6,9 +6,10 @@ import ( ) var catCmd = &cobra.Command{ - Use: "cat", - Short: "Display the source of a or ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "cat", + Short: "Display the source of a or ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/command.go b/completers/brew_completer/cmd/command.go index b5b5f1b25a..f407718712 100644 --- a/completers/brew_completer/cmd/command.go +++ b/completers/brew_completer/cmd/command.go @@ -6,9 +6,10 @@ import ( ) var commandCmd = &cobra.Command{ - Use: "command", - Short: "Display the path to the file being used when invoking `brew` ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "command", + Short: "Display the path to the file being used when invoking `brew` ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/contributions.go b/completers/brew_completer/cmd/contributions.go index 73789a156b..e85e427c77 100644 --- a/completers/brew_completer/cmd/contributions.go +++ b/completers/brew_completer/cmd/contributions.go @@ -6,9 +6,10 @@ import ( ) var contributionsCmd = &cobra.Command{ - Use: "contributions", - Short: "Summarise contributions to Homebrew repositories", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "contributions", + Short: "Summarise contributions to Homebrew repositories", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/create.go b/completers/brew_completer/cmd/create.go index 8e4b589b68..3fc58e33aa 100644 --- a/completers/brew_completer/cmd/create.go +++ b/completers/brew_completer/cmd/create.go @@ -6,9 +6,10 @@ import ( ) var createCmd = &cobra.Command{ - Use: "create", - Short: "Generate a formula or, with `--cask`, a cask for the downloadable file at and open it in the editor", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "create", + Short: "Generate a formula or, with `--cask`, a cask for the downloadable file at and open it in the editor", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/determineTestRunners.go b/completers/brew_completer/cmd/determineTestRunners.go index e9cdc40d1e..b65efa0dda 100644 --- a/completers/brew_completer/cmd/determineTestRunners.go +++ b/completers/brew_completer/cmd/determineTestRunners.go @@ -6,9 +6,10 @@ import ( ) var determineTestRunnersCmd = &cobra.Command{ - Use: "determine-test-runners", - Short: "Determines the runners used to test formulae or their dependents", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "determine-test-runners", + Short: "Determines the runners used to test formulae or their dependents", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/dispatchBuildBottle.go b/completers/brew_completer/cmd/dispatchBuildBottle.go index e159eee9b6..90208fd533 100644 --- a/completers/brew_completer/cmd/dispatchBuildBottle.go +++ b/completers/brew_completer/cmd/dispatchBuildBottle.go @@ -6,9 +6,10 @@ import ( ) var dispatchBuildBottleCmd = &cobra.Command{ - Use: "dispatch-build-bottle", - Short: "Build bottles for these formulae with GitHub Actions", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "dispatch-build-bottle", + Short: "Build bottles for these formulae with GitHub Actions", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/edit.go b/completers/brew_completer/cmd/edit.go index 59f95c2ac8..ae1a66e8f7 100644 --- a/completers/brew_completer/cmd/edit.go +++ b/completers/brew_completer/cmd/edit.go @@ -7,9 +7,10 @@ import ( ) var editCmd = &cobra.Command{ - Use: "edit", - Short: "Open a , or in the editor set by `EDITOR` or `HOMEBREW_EDITOR`, or open the Homebrew repository for editing if no argument is provided", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "edit", + Short: "Open a , or in the editor set by `EDITOR` or `HOMEBREW_EDITOR`, or open the Homebrew repository for editing if no argument is provided", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/extract.go b/completers/brew_completer/cmd/extract.go index 4ec7a66c67..6105c11d21 100644 --- a/completers/brew_completer/cmd/extract.go +++ b/completers/brew_completer/cmd/extract.go @@ -6,9 +6,10 @@ import ( ) var extractCmd = &cobra.Command{ - Use: "extract", - Short: "Look through repository history to find the most recent version of and create a copy in ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "extract", + Short: "Look through repository history to find the most recent version of and create a copy in ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/formula.go b/completers/brew_completer/cmd/formula.go index e5f174ced7..5011142350 100644 --- a/completers/brew_completer/cmd/formula.go +++ b/completers/brew_completer/cmd/formula.go @@ -8,7 +8,7 @@ import ( var formulaCmd = &cobra.Command{ Use: "formula", Short: "Display the path where is located", - GroupID: "main", + GroupID: "developer", Run: func(cmd *cobra.Command, args []string) {}, } diff --git a/completers/brew_completer/cmd/generateCaskApi.go b/completers/brew_completer/cmd/generateCaskApi.go index e9cb543868..b36324bfbe 100644 --- a/completers/brew_completer/cmd/generateCaskApi.go +++ b/completers/brew_completer/cmd/generateCaskApi.go @@ -6,9 +6,10 @@ import ( ) var generateCaskApiCmd = &cobra.Command{ - Use: "generate-cask-api", - Short: "Generate `homebrew/cask` API data files for ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "generate-cask-api", + Short: "Generate `homebrew/cask` API data files for ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/generateFormulaApi.go b/completers/brew_completer/cmd/generateFormulaApi.go index 310089b01a..d51497018a 100644 --- a/completers/brew_completer/cmd/generateFormulaApi.go +++ b/completers/brew_completer/cmd/generateFormulaApi.go @@ -6,9 +6,10 @@ import ( ) var generateFormulaApiCmd = &cobra.Command{ - Use: "generate-formula-api", - Short: "Generate `homebrew/core` API data files for ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "generate-formula-api", + Short: "Generate `homebrew/core` API data files for ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/generateManCompletions.go b/completers/brew_completer/cmd/generateManCompletions.go index a5401fbdf5..1f51681c94 100644 --- a/completers/brew_completer/cmd/generateManCompletions.go +++ b/completers/brew_completer/cmd/generateManCompletions.go @@ -6,9 +6,10 @@ import ( ) var generateManCompletionsCmd = &cobra.Command{ - Use: "generate-man-completions", - Short: "Generate Homebrew's manpages and shell completions", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "generate-man-completions", + Short: "Generate Homebrew's manpages and shell completions", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/installBundlerGems.go b/completers/brew_completer/cmd/installBundlerGems.go index 607892daf1..315de24624 100644 --- a/completers/brew_completer/cmd/installBundlerGems.go +++ b/completers/brew_completer/cmd/installBundlerGems.go @@ -6,9 +6,10 @@ import ( ) var installBundlerGemsCmd = &cobra.Command{ - Use: "install-bundler-gems", - Short: "Install Homebrew's Bundler gems", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "install-bundler-gems", + Short: "Install Homebrew's Bundler gems", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/irb.go b/completers/brew_completer/cmd/irb.go index 6a82668e02..019184994c 100644 --- a/completers/brew_completer/cmd/irb.go +++ b/completers/brew_completer/cmd/irb.go @@ -6,9 +6,10 @@ import ( ) var irbCmd = &cobra.Command{ - Use: "irb", - Short: "Enter the interactive Homebrew Ruby shell", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "irb", + Short: "Enter the interactive Homebrew Ruby shell", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/linkage.go b/completers/brew_completer/cmd/linkage.go index 880edb1b22..ae299cede0 100644 --- a/completers/brew_completer/cmd/linkage.go +++ b/completers/brew_completer/cmd/linkage.go @@ -6,9 +6,10 @@ import ( ) var linkageCmd = &cobra.Command{ - Use: "linkage", - Short: "Check the library links from the given kegs", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "linkage", + Short: "Check the library links from the given kegs", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/livecheck.go b/completers/brew_completer/cmd/livecheck.go index 9894077e86..7ddaa4747a 100644 --- a/completers/brew_completer/cmd/livecheck.go +++ b/completers/brew_completer/cmd/livecheck.go @@ -6,9 +6,10 @@ import ( ) var livecheckCmd = &cobra.Command{ - Use: "livecheck", - Short: "Check for newer versions of formulae and/or casks from upstream", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "livecheck", + Short: "Check for newer versions of formulae and/or casks from upstream", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/prAutomerge.go b/completers/brew_completer/cmd/prAutomerge.go index f0c8096662..3d106093fb 100644 --- a/completers/brew_completer/cmd/prAutomerge.go +++ b/completers/brew_completer/cmd/prAutomerge.go @@ -6,9 +6,10 @@ import ( ) var prAutomergeCmd = &cobra.Command{ - Use: "pr-automerge", - Short: "Find pull requests that can be automatically merged using `brew pr-publish`", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "pr-automerge", + Short: "Find pull requests that can be automatically merged using `brew pr-publish`", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/prPublish.go b/completers/brew_completer/cmd/prPublish.go index c5f9639673..890ab28f43 100644 --- a/completers/brew_completer/cmd/prPublish.go +++ b/completers/brew_completer/cmd/prPublish.go @@ -6,9 +6,10 @@ import ( ) var prPublishCmd = &cobra.Command{ - Use: "pr-publish", - Short: "Publish bottles for a pull request with GitHub Actions", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "pr-publish", + Short: "Publish bottles for a pull request with GitHub Actions", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/prPull.go b/completers/brew_completer/cmd/prPull.go index 1a4d66a35e..aed1876a92 100644 --- a/completers/brew_completer/cmd/prPull.go +++ b/completers/brew_completer/cmd/prPull.go @@ -6,9 +6,10 @@ import ( ) var prPullCmd = &cobra.Command{ - Use: "pr-pull", - Short: "Download and publish bottles, and apply the bottle commit from a pull request with artifacts generated by GitHub Actions", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "pr-pull", + Short: "Download and publish bottles, and apply the bottle commit from a pull request with artifacts generated by GitHub Actions", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/prUpload.go b/completers/brew_completer/cmd/prUpload.go index 871cedf9e8..db553d7a00 100644 --- a/completers/brew_completer/cmd/prUpload.go +++ b/completers/brew_completer/cmd/prUpload.go @@ -6,9 +6,10 @@ import ( ) var prUploadCmd = &cobra.Command{ - Use: "pr-upload", - Short: "Apply the bottle commit and publish bottles to a host", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "pr-upload", + Short: "Apply the bottle commit and publish bottles to a host", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/prof.go b/completers/brew_completer/cmd/prof.go index f420dd6c7c..be8b037b2b 100644 --- a/completers/brew_completer/cmd/prof.go +++ b/completers/brew_completer/cmd/prof.go @@ -6,9 +6,10 @@ import ( ) var profCmd = &cobra.Command{ - Use: "prof", - Short: "Run Homebrew with a Ruby profiler", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "prof", + Short: "Run Homebrew with a Ruby profiler", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/release.go b/completers/brew_completer/cmd/release.go index 2803877f45..9a34e4d635 100644 --- a/completers/brew_completer/cmd/release.go +++ b/completers/brew_completer/cmd/release.go @@ -6,9 +6,10 @@ import ( ) var releaseCmd = &cobra.Command{ - Use: "release", - Short: "Create a new draft Homebrew/brew release with the appropriate version number and release notes", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "release", + Short: "Create a new draft Homebrew/brew release with the appropriate version number and release notes", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/ruby.go b/completers/brew_completer/cmd/ruby.go index aee9c7ee1b..f0fbc4cfcd 100644 --- a/completers/brew_completer/cmd/ruby.go +++ b/completers/brew_completer/cmd/ruby.go @@ -6,9 +6,10 @@ import ( ) var rubyCmd = &cobra.Command{ - Use: "ruby", - Short: "Run a Ruby instance with Homebrew's libraries loaded", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "ruby", + Short: "Run a Ruby instance with Homebrew's libraries loaded", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/sh.go b/completers/brew_completer/cmd/sh.go index 8d12fb4590..10c9b6ea4c 100644 --- a/completers/brew_completer/cmd/sh.go +++ b/completers/brew_completer/cmd/sh.go @@ -6,9 +6,10 @@ import ( ) var shCmd = &cobra.Command{ - Use: "sh", - Short: "Enter an interactive shell for Homebrew's build environment", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "sh", + Short: "Enter an interactive shell for Homebrew's build environment", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/style.go b/completers/brew_completer/cmd/style.go index a84edf513f..9555f13a37 100644 --- a/completers/brew_completer/cmd/style.go +++ b/completers/brew_completer/cmd/style.go @@ -6,9 +6,10 @@ import ( ) var styleCmd = &cobra.Command{ - Use: "style", - Short: "Check formulae or files for conformance to Homebrew style guidelines", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "style", + Short: "Check formulae or files for conformance to Homebrew style guidelines", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/tapNew.go b/completers/brew_completer/cmd/tapNew.go index 63a17b0c5f..4235a5f87a 100644 --- a/completers/brew_completer/cmd/tapNew.go +++ b/completers/brew_completer/cmd/tapNew.go @@ -6,9 +6,10 @@ import ( ) var tapNewCmd = &cobra.Command{ - Use: "tap-new", - Short: "Generate the template files for a new tap", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "tap-new", + Short: "Generate the template files for a new tap", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/test.go b/completers/brew_completer/cmd/test.go index 4920ad9d7b..316683d8e2 100644 --- a/completers/brew_completer/cmd/test.go +++ b/completers/brew_completer/cmd/test.go @@ -6,9 +6,10 @@ import ( ) var testCmd = &cobra.Command{ - Use: "test", - Short: "Run the test method provided by an installed formula", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "test", + Short: "Run the test method provided by an installed formula", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/tests.go b/completers/brew_completer/cmd/tests.go index fac89a3170..0dd4d4d15c 100644 --- a/completers/brew_completer/cmd/tests.go +++ b/completers/brew_completer/cmd/tests.go @@ -6,9 +6,10 @@ import ( ) var testsCmd = &cobra.Command{ - Use: "tests", - Short: "Run Homebrew's unit and integration tests", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "tests", + Short: "Run Homebrew's unit and integration tests", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/typecheck.go b/completers/brew_completer/cmd/typecheck.go index 94d2c23d76..531928aea8 100644 --- a/completers/brew_completer/cmd/typecheck.go +++ b/completers/brew_completer/cmd/typecheck.go @@ -6,9 +6,10 @@ import ( ) var typecheckCmd = &cobra.Command{ - Use: "typecheck", - Short: "Check for typechecking errors using Sorbet", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "typecheck", + Short: "Check for typechecking errors using Sorbet", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/unbottled.go b/completers/brew_completer/cmd/unbottled.go index 713a314337..905a60a26b 100644 --- a/completers/brew_completer/cmd/unbottled.go +++ b/completers/brew_completer/cmd/unbottled.go @@ -6,9 +6,10 @@ import ( ) var unbottledCmd = &cobra.Command{ - Use: "unbottled", - Short: "Show the unbottled dependents of formulae", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "unbottled", + Short: "Show the unbottled dependents of formulae", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/unpack.go b/completers/brew_completer/cmd/unpack.go index 9a821f9ca4..e1e11b3384 100644 --- a/completers/brew_completer/cmd/unpack.go +++ b/completers/brew_completer/cmd/unpack.go @@ -6,9 +6,10 @@ import ( ) var unpackCmd = &cobra.Command{ - Use: "unpack", - Short: "Unpack the source files for into subdirectories of the current working directory", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "unpack", + Short: "Unpack the source files for into subdirectories of the current working directory", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/updateLicenseData.go b/completers/brew_completer/cmd/updateLicenseData.go index bb5e9a68c6..5d66b45854 100644 --- a/completers/brew_completer/cmd/updateLicenseData.go +++ b/completers/brew_completer/cmd/updateLicenseData.go @@ -6,9 +6,10 @@ import ( ) var updateLicenseDataCmd = &cobra.Command{ - Use: "update-license-data", - Short: "Update SPDX license data in the Homebrew repository", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "update-license-data", + Short: "Update SPDX license data in the Homebrew repository", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/updateMaintainers.go b/completers/brew_completer/cmd/updateMaintainers.go index ff55f14a4a..89a12a0a7b 100644 --- a/completers/brew_completer/cmd/updateMaintainers.go +++ b/completers/brew_completer/cmd/updateMaintainers.go @@ -6,9 +6,10 @@ import ( ) var updateMaintainersCmd = &cobra.Command{ - Use: "update-maintainers", - Short: "Update the list of maintainers in the `Homebrew/brew` README", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "update-maintainers", + Short: "Update the list of maintainers in the `Homebrew/brew` README", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/updatePythonResources.go b/completers/brew_completer/cmd/updatePythonResources.go index 96d887659f..2b41f0f290 100644 --- a/completers/brew_completer/cmd/updatePythonResources.go +++ b/completers/brew_completer/cmd/updatePythonResources.go @@ -6,9 +6,10 @@ import ( ) var updatePythonResourcesCmd = &cobra.Command{ - Use: "update-python-resources", - Short: "Update versions for PyPI resource blocks in ", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "update-python-resources", + Short: "Update versions for PyPI resource blocks in ", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/updateSponsors.go b/completers/brew_completer/cmd/updateSponsors.go index 9b485dc101..c535609434 100644 --- a/completers/brew_completer/cmd/updateSponsors.go +++ b/completers/brew_completer/cmd/updateSponsors.go @@ -6,9 +6,10 @@ import ( ) var updateSponsorsCmd = &cobra.Command{ - Use: "update-sponsors", - Short: "Update the list of GitHub Sponsors in the `Homebrew/brew` README", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "update-sponsors", + Short: "Update the list of GitHub Sponsors in the `Homebrew/brew` README", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/updateTest.go b/completers/brew_completer/cmd/updateTest.go index 1ee96582b3..56da49a26f 100644 --- a/completers/brew_completer/cmd/updateTest.go +++ b/completers/brew_completer/cmd/updateTest.go @@ -6,9 +6,10 @@ import ( ) var updateTestCmd = &cobra.Command{ - Use: "update-test", - Short: "Run a test of `brew update` with a new repository clone", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "update-test", + Short: "Run a test of `brew update` with a new repository clone", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() { diff --git a/completers/brew_completer/cmd/vendorGems.go b/completers/brew_completer/cmd/vendorGems.go index 133088da4d..6fbbaf42d3 100644 --- a/completers/brew_completer/cmd/vendorGems.go +++ b/completers/brew_completer/cmd/vendorGems.go @@ -6,9 +6,10 @@ import ( ) var vendorGemsCmd = &cobra.Command{ - Use: "vendor-gems", - Short: "Install and commit Homebrew's vendored gems", - Run: func(cmd *cobra.Command, args []string) {}, + Use: "vendor-gems", + Short: "Install and commit Homebrew's vendored gems", + GroupID: "developer", + Run: func(cmd *cobra.Command, args []string) {}, } func init() {