diff --git a/src/Jackett.Updater/UpdaterConsoleOptions.cs b/src/Jackett.Updater/UpdaterConsoleOptions.cs index 8e3fdba33..9147c7942 100644 --- a/src/Jackett.Updater/UpdaterConsoleOptions.cs +++ b/src/Jackett.Updater/UpdaterConsoleOptions.cs @@ -18,10 +18,10 @@ namespace Jackett.Updater [Option('a', "Args", HelpText = "Launch arguments")] public string Args { get; set; } - [Option(HelpText = "Don't restart after update")] + [Option("NoRestart", HelpText = "Don't restart after update")] public bool NoRestart { get; set; } - [Option(HelpText = "PIDs which will be killed before (Windows) or after (Unix) the update")] + [Option("KillPids", HelpText = "PIDs which will be killed before (Windows) or after (Unix) the update")] public string KillPids { get; set; } } }