mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
Update Setup project to handle EU region (#3137)
This commit is contained in:
@ -148,7 +148,7 @@ public static class Helpers
|
||||
Console.Write(prompt);
|
||||
if (prompt.EndsWith("?"))
|
||||
{
|
||||
Console.Write(" (y/n)");
|
||||
Console.Write(" (y/N)");
|
||||
}
|
||||
Console.Write(": ");
|
||||
var input = Console.ReadLine();
|
||||
@ -222,4 +222,13 @@ public static class Helpers
|
||||
Console.WriteLine();
|
||||
}
|
||||
}
|
||||
|
||||
public static void WriteError(string errorMessage)
|
||||
{
|
||||
Console.ForegroundColor = ConsoleColor.Red;
|
||||
Console.Write("(!) ");
|
||||
Console.ResetColor();
|
||||
Console.Write(errorMessage);
|
||||
Console.WriteLine();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user