1
0
mirror of https://github.com/bitwarden/server synced 2025-12-19 01:33:20 +00: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) if(ssl)
{ {
Directory.CreateDirectory($"/bitwarden/ssl/{domain}/"); Directory.CreateDirectory($"/bitwarden/ssl/{domain}/");
Helpers.ShowBanner("NOTE", "Make sure 'certificate.crt' and 'private.key' are provided in the \n" + var message = "Make sure 'certificate.crt' and 'private.key' are provided in the \n" +
"appropriate directory before running 'start' (see docs for info)."); "appropriate directory before running 'start' (see docs for info).";
Helpers.ShowBanner("NOTE", message);
} }
} }