From d7d1a9a99ebb0670552ab7b03ad60cbf457895d6 Mon Sep 17 00:00:00 2001 From: hogliux Date: Tue, 2 May 2017 11:25:23 +0100 Subject: [PATCH] Call AAX CreatePackage.bat script correctly from post-build script to catch any errors --- .../Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h b/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h index d42b13ca73..41c2b28fc5 100644 --- a/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h +++ b/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h @@ -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); }