From bfee9b25793154e0acf2b70cdd7631279ce17d6e Mon Sep 17 00:00:00 2001 From: Phavya Jayakumar Date: Sat, 11 Jul 2026 21:36:18 +0530 Subject: [PATCH 1/2] 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", From 67b005d3ae1ceca2717ec5bb8674b8ffee6e8fe1 Mon Sep 17 00:00:00 2001 From: Phavya Jayakumar Date: Thu, 16 Jul 2026 16:33:47 +0530 Subject: [PATCH 2/2] pipenv curation post-failure run --- buildtools/cli.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/buildtools/cli.go b/buildtools/cli.go index 038c277c5..e3c0913b9 100644 --- a/buildtools/cli.go +++ b/buildtools/cli.go @@ -331,7 +331,10 @@ func GetCommands() []cli.Command { SkipFlagParsing: true, BashComplete: corecommon.CreateBashCompletionFunc(), Category: buildToolsCategory, - Action: PipenvCmd, + Action: func(c *cli.Context) error { + cmdName, _ := getCommandName(c.Args()) + return securityCLI.WrapCmdWithCurationPostFailureRun(c, PipenvCmd, techutils.Pipenv, cmdName) + }, }, { Name: "poetry-config",