mirror of
https://github.com/bitwarden/server.git
synced 2024-12-23 17:07:42 +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:
parent
7424f6a6dd
commit
d35486cc4b
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user