mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Fix XCode exporter when certain paths contain ! characters
This commit is contained in:
parent
5e52056b9f
commit
78c07118a9
1 changed files with 1 additions and 1 deletions
|
|
@ -3012,7 +3012,7 @@ private:
|
|||
auto propertyName = o.getPropertyName (j);
|
||||
auto val = o.getProperty (propertyName).toString();
|
||||
|
||||
if (val.isEmpty() || (val.containsAnyOf (" \t;<>()=,&+-@~\r\n\\#%^`*")
|
||||
if (val.isEmpty() || (val.containsAnyOf (" \t;<>()=,&+-@~\r\n\\#%^`*!")
|
||||
&& ! (val.trimStart().startsWithChar ('(')
|
||||
|| val.trimStart().startsWithChar ('{'))))
|
||||
val = "\"" + val + "\"";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue