From 0080f35b4c6981509b21929e745757a39798af21 Mon Sep 17 00:00:00 2001 From: Yahan Xing Date: Thu, 21 May 2026 16:03:42 -0700 Subject: [PATCH] fix: show apps hint command in stripe --help --- pkg/cmd/resource/apps.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmd/resource/apps.go b/pkg/cmd/resource/apps.go index d819c182..a44b89ff 100644 --- a/pkg/cmd/resource/apps.go +++ b/pkg/cmd/resource/apps.go @@ -11,6 +11,7 @@ func RemoveAppsCmd(rootCmd *cobra.Command) error { if appsCmd, ok := cmdutil.FindSubCmd(rootCmd, "apps"); ok { // Remove the autogenerated in favor of the plugin rootCmd.RemoveCommand(appsCmd) + delete(rootCmd.Annotations, "apps") } return nil