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(); Boot();
Environment.Exit(0); Environment.Exit(0);
break; break;
case "-e":
case "--exit":
Environment.Exit(0);
break;
} }
} }
Console.Read(); Console.Read();