Merge pull request #4420 from certbot/issue4331

Ensure --fullchain-path gets put under paths in --help all
This commit is contained in:
Noah Swartz 2017-03-28 14:08:56 -07:00 committed by GitHub
commit 446509620f

View file

@ -1155,7 +1155,7 @@ def _paths_parser(helpful):
default_cp = None
if verb == "certonly":
default_cp = flag_default("auth_chain_path")
add(["install", "paths"], "--fullchain-path", default=default_cp, type=os.path.abspath,
add(["paths", "install"], "--fullchain-path", default=default_cp, type=os.path.abspath,
help="Accompanying path to a full certificate chain (cert plus chain).")
add("paths", "--chain-path", default=default_cp, type=os.path.abspath,
help="Accompanying path to a certificate chain.")