dockersetup: fix regression with https enabled

Fix a regression introduced in bfecbb091b.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2019-07-31 08:45:07 +12:00
parent bc6984b582
commit 9ce9f7d2d1

View File

@ -640,7 +640,7 @@ else:
edit_options_file(args.project_name)
if not args.no_https:
setup_https(args.hostname, http_port, https_port, letsencrypt, args.cert, args.cert_key, emailaddr)
setup_https(args.hostname, http_port, https_port, args.letsencrypt, args.cert, args.cert_key, emailaddr)
## Start up containers
return_code = subprocess.call(['docker-compose', 'up', '-d', '--build'], shell=False)