Closed maggix closed 4 years ago
Thanks for the report, It looks like a parsing error. The problem is no on the path of the file, but internally in the project itself there is a reference to the project name with a & that is breaking the parsing.
What you can check is, open the project.pbxproj in a text editor, look for the occurrences of M&R within the project, what you should find is something like name = M&R;
try enclosing the M&R within double quotes name = "M&R";
At least this will give me some pointers where to start looking at.
Hi @kronenthaler ! Thanks for the reply. The file is full of references of M&R as it's the name of the file, the name of the main target, ... the name of everything fundamentally!
I hope I will be able to follow-up but in urgency I currently switched to the "competition" ;) to overcome the issue (hope you don't mind!)
No offense taken, i will investigate the issue when i have free time.
This issue has become stale, the required information has not been provided and it is been marked for closure in the next 5 days
Hello,
when running the script to add a new build phase, I get this error:
KeyError: u'&'
Script:
Trackback:
How do I properly pass the
&
character in the path to the script? I tried escaping with\
without success.thank you