mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
Add separate exit argument to skip booting
This commit is contained in:
parent
1fd81feb22
commit
d7eea27e63
1 changed files with 4 additions and 1 deletions
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue