Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Dec 19, 2023
1 parent fd77243 commit 9ed4e62
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/carapace/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

var listCmd = &cobra.Command{
Use: "list",
Use: "--list",
Short: "",
Run: func(cmd *cobra.Command, args []string) {
// case "json":
Expand Down
2 changes: 1 addition & 1 deletion cmd/carapace/cmd/macros.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

var macrosCmd = &cobra.Command{
Use: "macros [macro] ...",
Use: "--macros [macro] ...",
Short: "",
Args: cobra.ArbitraryArgs,
Run: func(cmd *cobra.Command, args []string) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/carapace/cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

var runCmd = &cobra.Command{
Use: "run",
Use: "--run",
Short: "",
Args: cobra.MinimumNArgs(1),
Run: func(cmd *cobra.Command, args []string) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/carapace/cmd/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

var schemaCmd = &cobra.Command{
Use: "schema",
Use: "--schema",
Short: "",
Run: func(cmd *cobra.Command, args []string) {
if schema, err := spec.Schema(); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/carapace/cmd/scrape.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

var scrapeCmd = &cobra.Command{
Use: "scrape [spec]",
Use: "--scrape [spec]",
Short: "",
Args: cobra.MinimumNArgs(1),
Run: func(cmd *cobra.Command, args []string) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/carapace/cmd/style.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

var styleCmd = &cobra.Command{
Use: "style [config]",
Use: "--style [config]",
Short: "",
Args: cobra.MinimumNArgs(1),
Run: func(cmd *cobra.Command, args []string) {
Expand Down

0 comments on commit 9ed4e62

Please sign in to comment.