From b1d98522eed1a9f64d34eecca6243d2867fe89be Mon Sep 17 00:00:00 2001 From: Kyle Havlovitz Date: Fri, 14 Apr 2017 14:44:45 -0700 Subject: [PATCH] Fix help text for -ca-path --- command/base/command.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/command/base/command.go b/command/base/command.go index b6fe698fd8..3bd46e1a33 100644 --- a/command/base/command.go +++ b/command/base/command.go @@ -99,8 +99,7 @@ func (c *Command) httpFlagsClient(f *flag.FlagSet) *flag.FlagSet { "can also be specified via the CONSUL_CACERT environment variable.") f.Var(&c.caPath, "ca-path", "Path to a directory of CA certificates to use for TLS when communicating "+ - "with Consul. is enabled. This can also be specified via the CONSUL_CAPATH "+ - "environment variable.") + "with Consul. This can also be specified via the CONSUL_CAPATH environment variable.") f.Var(&c.certFile, "client-cert", "Path to a client cert file to use for TLS when `verify_incoming` is enabled. This "+ "can also be specified via the CONSUL_CLIENT_CERT environment variable.")