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

Projucer (Xcode): Include quotes when echoing post build commands

This commit is contained in:
Anthony Nicholls 2024-03-07 16:34:01 +00:00
parent f60b832eca
commit 97199a9d30

View file

@ -63,7 +63,7 @@ public:
ScriptBuilder& echo (const String& text)
{
return insertLine ("echo " + doubleQuoted (text.removeCharacters ("\"")));
return insertLine ("echo " + text.replace ("\"", "\\\""));
}
ScriptBuilder& remove (const String& path)