We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afb88ea commit 9bada6aCopy full SHA for 9bada6a
1 file changed
internal/command/fix.go
@@ -4,8 +4,10 @@ import "github.com/spf13/cobra"
4
5
func init() {
6
fixCmd := &cobra.Command{
7
- Use: "fix [<branch> <base>]",
8
- Args: validBranchNames(stacker, 0, 2),
+ Use: "fix [<branch> <base>]",
+ // TODO: re-enable validation, add completion
9
+ Args: cobra.RangeArgs(0, 2), // validBranchNames(stacker, 0, 2),
10
+ //ValidArgsFunction: nil,
11
RunE: func(cmd *cobra.Command, args []string) error {
12
return stacker.Fix(cmd.Context(), args...)
13
},
0 commit comments