From d35486cc4bce78f2f23a9b08196585061dd79136 Mon Sep 17 00:00:00 2001 From: tionu <201703262243_github.com@uniquemail.net> Date: Thu, 9 Aug 2018 03:26:52 +0200 Subject: [PATCH] cerbot email input error (#339) when asking for an email address during certbot install, the given email address gets joined with the text "expiration reminders)". Thus cerbot install will fail. Fixed the issue by setting suitable brackets. --- scripts/run.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 11ada5819..257599176 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -34,8 +34,8 @@ function Install() { if ($letsEncrypt -eq "y") { Write-Host "(!) " -f cyan -nonewline - [string]$email = $( Read-Host "Enter your email address (Let's Encrypt will send you certificate " + - "expiration reminders)" ) + [string]$email = $( Read-Host ("Enter your email address (Let's Encrypt will send you certificate " + + "expiration reminders)") ) echo "" $letsEncryptPath = "${outputDir}/letsencrypt"