From 364cd8fe1b43a44f2c0bc9eb8ed6f17e183d6323 Mon Sep 17 00:00:00 2001 From: Saurabh Date: Mon, 2 Jul 2018 11:49:51 +0530 Subject: [PATCH] [fix][args] add param exclude base domain --- bench/commands/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/commands/setup.py b/bench/commands/setup.py index 25e0fc5e..8039be26 100755 --- a/bench/commands/setup.py +++ b/bench/commands/setup.py @@ -135,7 +135,7 @@ def setup_letsencrypt(site, custom_domain, non_interactive): def setup_wildcard_ssl(domain, email, exclude_base_domain): ''' Setup wildcard ssl certificate ''' from bench.config.lets_encrypt import setup_wildcard_ssl - setup_wildcard_ssl(domain, email, bench_path='.') + setup_wildcard_ssl(domain, email, bench_path='.', exclude_base_domain) @click.command('procfile')