1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-28 06:44:50 -05:00

note message var

This commit is contained in:
Kyle Spearrin 2018-03-30 13:50:51 -04:00
parent 818a668e3c
commit 7878362a51

View File

@ -77,8 +77,9 @@ namespace Bit.Setup
if(ssl)
{
Directory.CreateDirectory($"/bitwarden/ssl/{domain}/");
Helpers.ShowBanner("NOTE", "Make sure 'certificate.crt' and 'private.key' are provided in the \n" +
"appropriate directory before running 'start' (see docs for info).");
var message = "Make sure 'certificate.crt' and 'private.key' are provided in the \n" +
"appropriate directory before running 'start' (see docs for info).";
Helpers.ShowBanner("NOTE", message);
}
}