mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-31 11:22:06 +00:00
IISController now wraps config path (in argument) with quotes to allow for paths with spaces
This commit is contained in:
parent
4e5c354cd6
commit
19c7702647
2 changed files with 683 additions and 192 deletions
File diff suppressed because it is too large
Load diff
|
@ -35,7 +35,7 @@ internal static Process StartServer()
|
|||
IISProcess = new Process();
|
||||
|
||||
IISProcess.StartInfo.FileName = IISExe;
|
||||
IISProcess.StartInfo.Arguments = String.Format("/config:{0} /trace:i", IISConfigPath);//"/config:"""" /trace:i";
|
||||
IISProcess.StartInfo.Arguments = String.Format("/config:\"{0}\" /trace:i", IISConfigPath);//"/config:"""" /trace:i";
|
||||
IISProcess.StartInfo.WorkingDirectory = Config.ProjectRoot;
|
||||
|
||||
IISProcess.StartInfo.UseShellExecute = false;
|
||||
|
|
Loading…
Reference in a new issue