mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05: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:
@ -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"
|
||||
|
Reference in New Issue
Block a user