fix updater options

This commit is contained in:
kaso17 2017-11-14 20:21:40 +01:00
parent b2a27591e6
commit 7b80d3c07e
1 changed files with 2 additions and 2 deletions

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