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:
parent
bd8233f7f8
commit
b0ea7ab62a
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue