Skip to content

Commit

Permalink
Merge branch 'master' into AutoGenerateTests
Browse files Browse the repository at this point in the history
  • Loading branch information
thargy committed Jun 5, 2018
2 parents 0ccdec0 + c66f5f5 commit 14fef61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ShaderGen.App/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ private static bool CompileHlsl(string shaderPath, string entryPoint, ShaderFunc
p.Start();
var stdOut = p.StandardOutput.ReadToEndAsync();
var stdErr = p.StandardError.ReadToEndAsync();
bool exited = p.WaitForExit(2000);
bool exited = p.WaitForExit(60000);

if (exited && p.ExitCode == 0)
{
Expand Down

0 comments on commit 14fef61

Please sign in to comment.