draw help

This commit is contained in:
2024-08-10 09:23:57 +02:00
parent 69cd869cd1
commit 2e467c0a96
2 changed files with 15 additions and 2 deletions

View File

@@ -30,7 +30,12 @@ public static class Program
{
var options = new Options(args);
if (options.NoUi)
InstallWithoutGui(options.UpdateOptions, options.Silent);
{
if (options.Help)
options.DrawHelp();
else
InstallWithoutGui(options.UpdateOptions, options.Silent);
}
else
{
ShowWindow(GetConsoleWindow(), 0);