Skip to content

Commit 614c028

Browse files
dhirajsbLuis Garcia Acosta
authored andcommitted
fix: renamed ready.go to start.go
1 parent 74b27d0 commit 614c028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func NewStartCommand(f *factory.Factory) *cobra.Command {
2525
return nil
2626
},
2727
RunE: func(cmd *cobra.Command, args []string) error {
28-
return opts.ready()
28+
return opts.start()
2929
},
3030
}
3131

@@ -36,7 +36,7 @@ func NewStartCommand(f *factory.Factory) *cobra.Command {
3636
return cmd
3737
}
3838

39-
func (opts options) ready() error {
39+
func (opts options) start() error {
4040
if !opts.skipConfirm {
4141
confirm, promptErr := cmdutil.PromptConfirm("Are you sure you want to start the connector with id '%s'?", opts.id)
4242
if promptErr != nil {

0 commit comments

Comments
 (0)