1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 09:21:57 +00:00

Fixed installation of service, it was getting a blank filename for the executable.

This commit is contained in:
Mark McDowall 2011-10-24 23:47:28 -07:00
parent 6b26843b50
commit c86cf76181

View file

@ -36,7 +36,7 @@ public virtual void Install()
var serviceInstaller = new ServiceInstaller(); 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); var context = new InstallContext("service_install.log", cmdline);
serviceInstaller.Context = context; serviceInstaller.Context = context;