Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion buildtools/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,11 @@
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)

Check failure on line 381 in buildtools/cli.go

View workflow job for this annotation

GitHub Actions / Lint

undefined: techutils.Uv

Check failure on line 381 in buildtools/cli.go

View workflow job for this annotation

GitHub Actions / Static Check

undefined: techutils.Uv (typecheck)

Check failure on line 381 in buildtools/cli.go

View workflow job for this annotation

GitHub Actions / Go-Sec

undefined: techutils.Uv

Check failure on line 381 in buildtools/cli.go

View workflow job for this annotation

GitHub Actions / Go-Sec

undefined: techutils.Uv
},
Hidden: true,
},
{
Name: "helm",
Expand Down
Loading