Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/c86cf761814c5c99d639191d963df85db8aa8e7c You should set ROOT_URL correctly, otherwise the web may not work correctly.

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

pull/4/head
Mark McDowall 14 years ago
parent 6b26843b50
commit c86cf76181

@ -36,7 +36,7 @@ namespace NzbDrone.Common
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…
Cancel
Save