Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bchatelard committed Nov 28, 2024
1 parent dccda6b commit bbc91a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/koyeb/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ $ koyeb completion fish > ~/.config/fish/completions/koyeb.fish
`,
DisableFlagsInUseLine: true,
ValidArgs: []string{"bash", "zsh", "fish", "powershell"},
Args: cobra.ExactValidArgs(1),
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs),
RunE: func(cmd *cobra.Command, args []string) error {
switch args[0] {
case "bash":
Expand Down

0 comments on commit bbc91a1

Please sign in to comment.