X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=main.go;fp=main.go;h=ee0def8c97268c0278d00ab99be37843273cc6f0;hb=407b8190b86e31f5e1fbd31fae30dcbf8be36fe6;hp=197541d3c356d672421025bf5bcd676b575d6e76;hpb=2e1b9ab05d094f03f8dc2904bac02ab9904a4824;p=src%2Fxds%2Fxds-cli.git diff --git a/main.go b/main.go index 197541d..ee0def8 100644 --- a/main.go +++ b/main.go @@ -189,6 +189,19 @@ func main() { initCmdExec(&app.Commands) initCmdMisc(&app.Commands) + // Add --config option to all commands to support --config option either before or after command verb + // IOW support following both syntaxes: + // xds-cli exec --config myprj.conf ... + // xds-cli --config myprj.conf exec ... + for i, cmd := range app.Commands { + if len(cmd.Flags) > 0 { + app.Commands[i].Flags = append(cmd.Flags, cli.StringFlag{Hidden: true, Name: "config, c"}) + } + for j, subCmd := range cmd.Subcommands { + app.Commands[i].Subcommands[j].Flags = append(subCmd.Flags, cli.StringFlag{Hidden: true, Name: "config, c"}) + } + } + sort.Sort(cli.FlagsByName(app.Flags)) sort.Sort(cli.CommandsByName(app.Commands))