1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00
This commit is contained in:
Michal Checinski
2023-08-29 14:23:51 +02:00
parent 5ecffdad74
commit 5d7da922fc

View File

@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging;
internal class Program
{
private IDictionary<string, string> Parameters { get; set; }
private static IDictionary<string, string> Parameters { get; set; }
private static int Main(string[] args)
{
@ -106,7 +106,7 @@ internal class Program
private static void ParseParameters(string[] args)
{
Parameters = new Dictionary<string, string>();
for (var i = 0; i < args.Length; i = i + 2)
for (var i = 0; i < args.Length; i += 2)
{
if (!args[i].StartsWith("-"))
{