mirror of
https://github.com/Radarr/Radarr
synced 2024-12-24 17:01:38 +00:00
Fixed installation of service, it was getting a blank filename for the executable.
This commit is contained in:
parent
6b26843b50
commit
c86cf76181
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ public virtual void Install()
|
|||
var serviceInstaller = new ServiceInstaller();
|
||||
|
||||
|
||||
String[] cmdline = { @"/assemblypath=" + Process.GetCurrentProcess().StartInfo.FileName };
|
||||
String[] cmdline = { @"/assemblypath=" + Process.GetCurrentProcess().MainModule.FileName };
|
||||
|
||||
var context = new InstallContext("service_install.log", cmdline);
|
||||
serviceInstaller.Context = context;
|
||||
|
|
Loading…
Reference in a new issue