Mac fix for launching html5 on chrome

[CL 2339718 by James Moran in Main branch]
This commit is contained in:
James Moran
2014-10-24 08:10:08 -04:00
committed by UnrealBot
parent 0da3bfc299
commit 88141087d9
@@ -384,7 +384,7 @@ public class HTML5Platform : Platform
argument = "";
// Chrome issue. Firefox may work like this in the future
bool bBrowserWillSpawnProcess = browserPath.Contains("chrome");
bool bBrowserWillSpawnProcess = browserPath.Contains("chrome") || (browserPath.Contains("Google Chrome") && Utils.IsRunningOnMono);
ProcessResult SubProcess = null;
ProcessResult ClientProcess = Run(browserPath, argument, null, ClientRunFlags | ERunOptions.NoWaitForExit);