Merge pull request #30211 from thaJeztah/fix-content-trust-flags

fix flag descriptions for content-trust
This commit is contained in:
Sebastiaan van Stijn
2017-01-23 23:52:11 +01:00
committed by GitHub
8 changed files with 22 additions and 18 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ func newInstallCommand(dockerCli *command.DockerCli) *cobra.Command {
flags.BoolVar(&options.disable, "disable", false, "Do not enable the plugin on install")
flags.StringVar(&options.alias, "alias", "", "Local name for plugin")
command.AddTrustedFlags(flags, true)
command.AddTrustVerificationFlags(flags)
return cmd
}
+1 -1
View File
@@ -26,7 +26,7 @@ func newPushCommand(dockerCli *command.DockerCli) *cobra.Command {
flags := cmd.Flags()
command.AddTrustedFlags(flags, true)
command.AddTrustSigningFlags(flags)
return cmd
}