1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-08 23:24:19 +00:00

Projucer: Increase the timeout of post-export commands

This commit is contained in:
Tom Poole 2023-09-04 16:11:02 +01:00
parent bd8233f7f8
commit b0ea7ab62a

View file

@ -823,7 +823,8 @@ void ProjectSaver::runPostExportScript()
return;
}
if (! shellProcess.waitForProcessToFinish (10000))
// Some scripts can take a long time to complete
if (! shellProcess.waitForProcessToFinish (60000))
{
addError ("Timeout running shell command: " + argList.joinIntoString (" "));
return;