From e9523f05caa306ac6bf1dda9a43b8c1bc49ed169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20M=C3=BCller?= Date: Fri, 19 Apr 2019 22:51:24 +0200 Subject: [PATCH] fix quotation marks --- main.go | 2 +- readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 74e2ee4..df0a2c6 100644 --- a/main.go +++ b/main.go @@ -31,7 +31,7 @@ func main() { RunE: commandRun, } - dumpCmd.Flags().String("source", "file", "Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with `source..`") + dumpCmd.Flags().String("source", "file", "Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with 'source.'.") dumpCmd.Flags().String("source.file", "./acme.json", "Path to 'acme.json' for file source.") // Generic parameters for Key/Value backends diff --git a/readme.md b/readme.md index b3c92c2..c840058 100644 --- a/readme.md +++ b/readme.md @@ -75,7 +75,7 @@ Flags: -h, --help help for dump --key-ext string The file extension of the generated private keys. (default ".key") --key-name string The file name (without extension) of the generated private keys. (default "privatekey") - --source source.. Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with source.. (default "file") + --source string Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with 'source.'. (default "file") --source.file string Path to 'acme.json' for file source. (default "./acme.json") --source.kv.boltdb.bucket string Bucket for boltdb. (default "traefik") --source.kv.boltdb.persist-connection Persist connection for boltdb.