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

Call AAX CreatePackage.bat script correctly from post-build script to catch any errors

This commit is contained in:
hogliux 2017-05-02 11:25:23 +01:00
parent 025513c5d3
commit d7d1a9a99e

View file

@ -344,7 +344,7 @@ public:
const String macOSDir = bundleContents + String ("\\") + (is64Bit ? "x64" : "Win32");
const String executable = macOSDir + String ("\\") + config.getOutputFilename (".aaxplugin", true);
return String ("copy /Y \"") + getOutputFilePath (config) + String ("\" \"") + executable + String ("\"\r\n") +
return String ("copy /Y \"") + getOutputFilePath (config) + String ("\" \"") + executable + String ("\"\r\ncall ") +
createRebasedPath (bundleScript) + String (" \"") + macOSDir + String ("\" ") + createRebasedPath (iconFilePath);
}