From bfee9b25793154e0acf2b70cdd7631279ce17d6e Mon Sep 17 00:00:00 2001 From: Phavya Jayakumar Date: Sat, 11 Jul 2026 21:36:18 +0530 Subject: [PATCH] uv curation post-failure run --- buildtools/cli.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/buildtools/cli.go b/buildtools/cli.go index 5f0ece37e..038c277c5 100644 --- a/buildtools/cli.go +++ b/buildtools/cli.go @@ -368,8 +368,11 @@ func GetCommands() []cli.Command { SkipFlagParsing: true, BashComplete: corecommon.CreateBashCompletionFunc(), Category: buildToolsCategory, - Action: UvCmd, - Hidden: true, + Action: func(c *cli.Context) error { + cmdName, _ := getCommandName(c.Args()) + return securityCLI.WrapCmdWithCurationPostFailureRun(c, UvCmd, techutils.Uv, cmdName) + }, + Hidden: true, }, { Name: "helm",