1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-22 22:31:09 +00:00

fix updater options

This commit is contained in:
kaso17 2017-11-14 20:21:40 +01:00
parent b2a27591e6
commit 7b80d3c07e

View file

@ -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; }
}
}