1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Projucer: Call post export script after removing old generated code

This commit is contained in:
Anthony Nicholls 2025-03-25 09:04:20 +00:00 committed by Anthony Nicholls
parent bd015f5c97
commit 86b17ef4fb

View file

@ -310,14 +310,14 @@ Result ProjectSaver::saveProject (ProjectExporter* specifiedExporterToSave)
writeProjects (modules, specifiedExporterToSave);
writeProjectFile();
runPostExportScript();
if (generatedCodeFolder.exists())
{
writeReadmeFile();
deleteUnwantedFilesIn (generatedCodeFolder);
}
runPostExportScript();
if (errors.isEmpty())
return Result::ok();
}