Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions cmd/convert/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ func NewConvertOptions(streams genericclioptions.IOStreams) *cobra.Command {
}

cmd := &cobra.Command{
Use: "convert",
Short: "Convert a deprecated resource to its replacement",
Use: "convert",
Short: "Convert a deprecated resource to its replacement",
Deprecated: "it has been replaced by the crane-plugin-buildconfig-to-shipwright plugin (https://github.com/migtools/crane-plugin-buildconfig-to-shipwright). Use it via `crane transform` instead.",
RunE: func(c *cobra.Command, args []string) error {
if err := t.Complete(c, args); err != nil {
return err
Expand Down
Loading