mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +00:00
Fixed app startup issue.
This commit is contained in:
parent
79b3a22c9a
commit
62013f6f87
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public void StartServer()
|
||||||
var startInfo = new ProcessStartInfo();
|
var startInfo = new ProcessStartInfo();
|
||||||
|
|
||||||
startInfo.FileName = _enviromentProvider.GetIISExe();
|
startInfo.FileName = _enviromentProvider.GetIISExe();
|
||||||
startInfo.Arguments = String.Format("/config:\"{0}\" /trace:i", _enviromentProvider.GetIISExe());
|
startInfo.Arguments = String.Format("/config:\"{0}\" /trace:i", _enviromentProvider.GetIISConfigPath());
|
||||||
startInfo.WorkingDirectory = _enviromentProvider.ApplicationPath;
|
startInfo.WorkingDirectory = _enviromentProvider.ApplicationPath;
|
||||||
|
|
||||||
startInfo.UseShellExecute = false;
|
startInfo.UseShellExecute = false;
|
||||||
|
|
Loading…
Reference in a new issue