github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/cmd/step/get/step_get.go (about)

     1  package get
     2  
     3  import (
     4  	"github.com/olli-ai/jx/v2/pkg/cmd/helper"
     5  	"github.com/olli-ai/jx/v2/pkg/cmd/opts"
     6  	"github.com/olli-ai/jx/v2/pkg/cmd/opts/step"
     7  	"github.com/spf13/cobra"
     8  )
     9  
    10  // StepGetOptions contains the command line flags
    11  type StepGetOptions struct {
    12  	step.StepOptions
    13  }
    14  
    15  // NewCmdStepGet Steps a command object for the "step" command
    16  func NewCmdStepGet(commonOpts *opts.CommonOptions) *cobra.Command {
    17  	options := &StepGetOptions{
    18  		StepOptions: step.StepOptions{
    19  			CommonOptions: commonOpts,
    20  		},
    21  	}
    22  
    23  	cmd := &cobra.Command{
    24  		Use:   "get",
    25  		Short: "get [command]",
    26  		Run: func(cmd *cobra.Command, args []string) {
    27  			options.Cmd = cmd
    28  			options.Args = args
    29  			err := options.Run()
    30  			helper.CheckErr(err)
    31  		},
    32  	}
    33  	cmd.AddCommand(NewCmdStepGetBuildNumber(commonOpts))
    34  	cmd.AddCommand(NewCmdStepGetVersionChangeSet(commonOpts))
    35  	cmd.AddCommand(NewCmdStepGetDependencyVersion(commonOpts))
    36  	return cmd
    37  }
    38  
    39  // Run implements this command
    40  func (o *StepGetOptions) Run() error {
    41  	return o.Cmd.Help()
    42  }