diff --git a/buildtools/cli.go b/buildtools/cli.go index 4daff389c..5e384e2fb 100644 --- a/buildtools/cli.go +++ b/buildtools/cli.go @@ -376,7 +376,11 @@ func GetCommands() []cli.Command { SkipFlagParsing: true, BashComplete: corecommon.CreateBashCompletionFunc(), Category: buildToolsCategory, - Action: UvCmd, + Action: func(c *cli.Context) error { + cmdName, _ := getCommandName(c.Args()) + return securityCLI.WrapCmdWithCurationPostFailureRun(c, UvCmd, techutils.Uv, cmdName) + }, + Hidden: true, }, { Name: "helm",