Browse Source

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

v7.0.12
Anthony Nicholls 1 year ago
parent
commit
97199a9d30
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

+ 1
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h 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)


Loading…
Cancel
Save