Skip to content

Commit b0ea7ab

Browse files
committed
Projucer: Increase the timeout of post-export commands
1 parent bd8233f commit b0ea7ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extras/Projucer/Source/ProjectSaving/jucer_ProjectSaver.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,8 @@ void ProjectSaver::runPostExportScript()
823823
return;
824824
}
825825

826-
if (! shellProcess.waitForProcessToFinish (10000))
826+
// Some scripts can take a long time to complete
827+
if (! shellProcess.waitForProcessToFinish (60000))
827828
{
828829
addError ("Timeout running shell command: " + argList.joinIntoString (" "));
829830
return;

0 commit comments

Comments
 (0)