jcavar / xcfui

Xcode plugin for fui tool
MIT License
210 stars 27 forks source link

BUG doesn't handle space in project name #1

Closed ironsheep closed 10 years ago

ironsheep commented 10 years ago

Not very many projects of mine have spaces in their name but one of mine does: "My GradeBook" which contains a "My GradeBook.xcodeproj", etc. Does not build and generates red errors!

The shell build rule injected into the project sees "GradeBook" and doesn't know what to do with it.

Basically there is a single space in the path being sent as arg1 and there is insufficient quoting to handle this case so part of the path is passed as arg2 leaving arg1 as a bad path.

to recreate, create a simple project with a space in it's name and build it. The errors are obvious.

-Stephen

jcavar commented 10 years ago

Hi Stephen, Thank you for reporting. This should be fixed now.

ironsheep commented 10 years ago

First of all, kudo's to you for responding so quickly! Great Job!

Downloaded, rebuilt, enabled and tested against the failing project. My project with these "evil spaces" in the name is working great now!

-Stephen