diff --git a/extras/Introjucer/Source/Application/jucer_AutoUpdater.h b/extras/Introjucer/Source/Application/jucer_AutoUpdater.h index af17b27ece..bf91f6bbb6 100644 --- a/extras/Introjucer/Source/Application/jucer_AutoUpdater.h +++ b/extras/Introjucer/Source/Application/jucer_AutoUpdater.h @@ -399,7 +399,17 @@ private: JUCEApplication::quit(); if (app.exists()) + { + app.setExecutePermission (true); + + #if JUCE_MAC + app.getChildFile("Contents") + .getChildFile("MacOS") + .getChildFile("Introjucer").setExecutePermission (true); + #endif + app.startAsProcess(); + } delete this; }