This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Projucer (Xcode): Include quotes when echoing post build commands
v7.0.12
Anthony Nicholls
1 year ago
parent
f60b832eca
commit
97199a9d30
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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)
Write
Preview
Loading…
Cancel
Save