Skip to content

Commit

Permalink
Add missing delete command
Browse files Browse the repository at this point in the history
Order list to be the same order as in build, even though it does not
matter in the commands list.

Add missing `deleteCmd` to buildrun command.
  • Loading branch information
HeavyWombat committed Jul 14, 2021
1 parent 7561eab commit 69933ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/shp/cmd/buildrun/buildrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ func Command(p *params.Params, ioStreams *genericclioptions.IOStreams) *cobra.Co

// TODO: add support for `update` and `get` commands
command.AddCommand(
runner.NewRunner(p, ioStreams, createCmd()).Cmd(),
runner.NewRunner(p, ioStreams, listCmd()).Cmd(),
runner.NewRunner(p, ioStreams, deleteCmd()).Cmd(),
runner.NewRunner(p, ioStreams, logsCmd()).Cmd(),
runner.NewRunner(p, ioStreams, logsCmd()).Cmd(),
runner.NewRunner(p, ioStreams, createCmd()).Cmd(),
)
return command
}

0 comments on commit 69933ac

Please sign in to comment.