This replaces the visitAll recursive function with a test that verifies that the option is set for all commands and subcommands, so that it doesn't have to be modified at runtime. We currently still have to loop over all functions for the setValidateArgs call, but that can be looked at separately. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
25 lines
569 B
Go
25 lines
569 B
Go
package trust
|
|
|
|
import (
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// newTrustSignerCommand returns a cobra command for `trust signer` subcommands
|
|
func newTrustSignerCommand(dockerCLI command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "signer",
|
|
Short: "Manage entities who can sign Docker images",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCLI.Err()),
|
|
|
|
DisableFlagsInUseLine: true,
|
|
}
|
|
cmd.AddCommand(
|
|
newSignerAddCommand(dockerCLI),
|
|
newSignerRemoveCommand(dockerCLI),
|
|
)
|
|
return cmd
|
|
}
|