Merge pull request #72 from flightlevel/monodebug2

MonoDebug2
This commit is contained in:
flightlevel 2015-11-19 22:20:23 +11:00
commit f8b6b17c29
1 changed files with 2 additions and 1 deletions

View File

@ -255,7 +255,8 @@ namespace Jackett.Services
var startInfo = new ProcessStartInfo()
{
Arguments = $"--Path \"{installLocation}\" --Type \"{exe}\" --Args \"{args}\"",
FileName = Path.Combine(updaterExePath)
FileName = Path.Combine(updaterExePath),
UseShellExecute = false
};
logger.Info($"startInfoArguments: {startInfo.Arguments.ToString()}");