1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 13:23:27 +00:00

format long strings

This commit is contained in:
Kyle Spearrin
2018-03-30 10:14:46 -04:00
parent 005a97d0b0
commit 64cd0b8942
2 changed files with 8 additions and 8 deletions

View File

@@ -77,8 +77,8 @@ namespace Bit.Setup
if(ssl)
{
Directory.CreateDirectory($"/bitwarden/ssl/{domain}/");
Helpers.ShowBanner("NOTE", "Make sure 'certificate.crt' and 'private.key' are provided in the " +
"appropriate directory (see docs for info).");
Helpers.ShowBanner("NOTE", "Make sure 'certificate.crt' and 'private.key' are provided in the \n" +
"appropriate directory (see docs for info).");
}
}
@@ -91,9 +91,9 @@ namespace Bit.Setup
var sslDiffieHellman = letsEncrypt;
if(ssl && !selfSignedSsl && !letsEncrypt)
{
sslDiffieHellman = Helpers.ReadQuestion(
"Use Diffie Hellman ephemeral parameters for SSL (requires dhparam.pem)?");
sslTrusted = Helpers.ReadQuestion("Is this a trusted SSL certificate (requires ca.crt)?");
sslDiffieHellman = Helpers.ReadQuestion("Use Diffie Hellman ephemeral parameters for SSL " +
"(requires dhparam.pem, see docs)?");
sslTrusted = Helpers.ReadQuestion("Is this a trusted SSL certificate (requires ca.crt, see docs)?");
}
var url = $"https://{domain}";