1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-24 17:17:40 +01:00

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.
This commit is contained in:
tionu 2018-08-09 03:26:52 +02:00 committed by Kyle Spearrin
parent 7424f6a6dd
commit d35486cc4b

View File

@ -34,8 +34,8 @@ function Install() {
if ($letsEncrypt -eq "y") { if ($letsEncrypt -eq "y") {
Write-Host "(!) " -f cyan -nonewline Write-Host "(!) " -f cyan -nonewline
[string]$email = $( Read-Host "Enter your email address (Let's Encrypt will send you certificate " + [string]$email = $( Read-Host ("Enter your email address (Let's Encrypt will send you certificate " +
"expiration reminders)" ) "expiration reminders)") )
echo "" echo ""
$letsEncryptPath = "${outputDir}/letsencrypt" $letsEncryptPath = "${outputDir}/letsencrypt"