Fixed app startup issue.

This commit is contained in:
kay.one 2011-11-13 13:06:04 -08:00
parent 79b3a22c9a
commit 62013f6f87
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace NzbDrone.Providers
var startInfo = new ProcessStartInfo();
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.UseShellExecute = false;