We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea72240 + 6b86763 commit 5c9ec1cCopy full SHA for 5c9ec1c
1 file changed
pkg/cmd/extension/command.go
@@ -458,9 +458,10 @@ func NewCmdExtension(f *cmdutil.Factory) *cobra.Command {
458
return cmd
459
}(),
460
&cobra.Command{
461
- Use: "remove <name>",
462
- Short: "Remove an installed extension",
463
- Args: cobra.ExactArgs(1),
+ Use: "remove <name>",
+ Short: "Remove an installed extension",
+ Aliases: []string{"uninstall"},
464
+ Args: cobra.ExactArgs(1),
465
RunE: func(cmd *cobra.Command, args []string) error {
466
extName := normalizeExtensionSelector(args[0])
467
if err := m.Remove(extName); err != nil {
0 commit comments