Update module github.com/urfave/cli/v3 to v3.6.2 (forgejo) (#10937)

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10937
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
This commit is contained in:
Renovate Bot 2026-01-28 13:08:23 +01:00 committed by Michael Kriese
parent e28e872c1d
commit 53ee80be9e
4 changed files with 15 additions and 4 deletions

View file

@ -204,6 +204,9 @@ func innerNewMainApp(version, versionExtra string, subCmdsStandaloneArgs, subCmd
for i := range subCmdWithConfig {
prepareSubcommandWithConfig(subCmdWithConfig[i], globalFlags)
}
for i := range subCmdStandalone {
subCmdStandalone[i].Flags = append(subCmdStandalone[i].Flags, cli.HelpFlag)
}
app.Commands = append(app.Commands, subCmdWithConfig...)
app.Commands = append(app.Commands, subCmdStandalone...)