-
Notifications
You must be signed in to change notification settings - Fork 787
/
step_update.go
42 lines (36 loc) · 1003 Bytes
/
step_update.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package update
import (
"github.com/jenkins-x/jx/v2/pkg/cmd/helper"
"github.com/jenkins-x/jx/v2/pkg/cmd/opts"
"github.com/jenkins-x/jx/v2/pkg/cmd/opts/step"
"github.com/jenkins-x/jx/v2/pkg/cmd/step/update/release"
"github.com/spf13/cobra"
)
// NewCmdStepUpdate Steps a command object for the "step" command
func NewCmdStepUpdate(commonOpts *opts.CommonOptions) *cobra.Command {
options := &step.StepUpdateOptions{
StepOptions: step.StepOptions{
CommonOptions: commonOpts,
},
}
cmd := &cobra.Command{
Use: "update",
Short: "update [command]",
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
helper.CheckErr(err)
},
}
cmd.AddCommand(release.NewCmdStepUpdateRelease(commonOpts))
return cmd
}
//StepUpdateCommand is the options for NewCmdStepUpdate
type StepUpdateCommand struct {
step.StepUpdateOptions
}
// Run implements this command
func (o *StepUpdateCommand) Run() error {
return o.Cmd.Help()
}