2021-07-08 13:12:09 +02:00

19 lines
328 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var bisect_skipCmd = &cobra.Command{
Use: "skip",
Short: "mark revisions as untestable",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(bisect_skipCmd).Standalone()
bisectCmd.AddCommand(bisect_skipCmd)
}