From 5059e0a69338f5a8489dec3aa89292ac0d3c2786 Mon Sep 17 00:00:00 2001 From: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com> Date: Wed, 20 Jan 2021 15:33:00 -0800 Subject: [PATCH] fixing the letsencrypt cert generation command in the powershell command (#1102) --- scripts/run.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index a928e80b2e..ae666b5785 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -64,8 +64,8 @@ function Install() { $certbotExp = "docker run -it --rm --name certbot -p ${certbotHttpsPort}:443 -p ${certbotHttpPort}:80 " +` "-v ${outputDir}/letsencrypt:/etc/letsencrypt/ certbot/certbot " +` "certonly{0} --standalone --noninteractive --agree-tos --preferred-challenges http " +` - "--email ${email} -d ${domain} --logs-dir /etc/letsencrypt/logs" -f $qFlag - Invoke-Expression $certbotExp + "--email ${email} -d ${domain} --logs-dir /etc/letsencrypt/logs" + Invoke-Expression ($certbotExp -f $qFlag) } }