mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed bug with wrong checksum for deprecated Xcode post-build script.
This commit is contained in:
parent
54d3cfac1d
commit
367f6eeb36
1 changed files with 1 additions and 1 deletions
|
|
@ -310,7 +310,7 @@ public:
|
|||
void updateDeprecatedProjectSettingsInteractively() override
|
||||
{
|
||||
// check for an old version of the script from the Introjucer
|
||||
if (MD5::fromUTF32 (getPostBuildScript()).toHexString() == "265ac212a7e734c5bbd6150e1eae18a1")
|
||||
if (MD5 (getPostBuildScript().toUTF8()).toHexString() == "265ac212a7e734c5bbd6150e1eae18a1")
|
||||
{
|
||||
String alertWindowText = iOS ? "Your Xcode (iOS) Exporter settings use an invalid post-build script. Click 'Update' to remove it."
|
||||
: "Your Xcode (OSX) Exporter settings use a pre-JUCE 4.2 post-build script to move the plug-in binaries to their plug-in install folders.\n\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue