1
0
mirror of synced 2025-02-21 21:10:27 +01:00

Add separate exit argument to skip booting

This commit is contained in:
Migush 2021-03-24 14:45:55 +01:00 committed by KillzXGaming
parent 1fd81feb22
commit d7eea27e63

View File

@ -65,7 +65,10 @@ namespace Updater
Boot();
Environment.Exit(0);
break;
case "-e":
case "--exit":
Environment.Exit(0);
break;
}
}
Console.Read();