1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52: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 internal class Program
{ {
private IDictionary<string, string> Parameters { get; set; } private static IDictionary<string, string> Parameters { get; set; }
private static int Main(string[] args) private static int Main(string[] args)
{ {
@ -106,7 +106,7 @@ internal class Program
private static void ParseParameters(string[] args) private static void ParseParameters(string[] args)
{ {
Parameters = new Dictionary<string, string>(); 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("-")) if (!args[i].StartsWith("-"))
{ {