diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-15 06:22:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 06:22:46 -0700 |
commit | ccf991f530dbe41d86b904ec900fda01ae3e1474 (patch) | |
tree | b1ae19c5cebdefbcedd5532108e30680cc687aad /cmd/podman/search.go | |
parent | 37dcc0a305a1606de7c0f5521d11250a4318bb51 (diff) | |
parent | 1e124306dbd35a4cfdf3f585119a2c4441ec543d (diff) | |
download | podman-ccf991f530dbe41d86b904ec900fda01ae3e1474.tar.gz podman-ccf991f530dbe41d86b904ec900fda01ae3e1474.tar.bz2 podman-ccf991f530dbe41d86b904ec900fda01ae3e1474.zip |
Merge pull request #2633 from edsantiago/default_default
Usage messages: deduplicate '(default true)' et al
Diffstat (limited to 'cmd/podman/search.go')
-rw-r--r-- | cmd/podman/search.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/search.go b/cmd/podman/search.go index 25f5a98b7..5997e144a 100644 --- a/cmd/podman/search.go +++ b/cmd/podman/search.go @@ -46,7 +46,7 @@ func init() { flags.StringVar(&searchCommand.Format, "format", "", "Change the output format to a Go template") flags.IntVar(&searchCommand.Limit, "limit", 0, "Limit the number of results") flags.BoolVar(&searchCommand.NoTrunc, "no-trunc", false, "Do not truncate the output") - flags.BoolVar(&searchCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries (default: true)") + flags.BoolVar(&searchCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries") } func searchCmd(c *cliconfig.SearchValues) error { |