emaloney / CleanroomLogger

CleanroomLogger provides an extensible Swift-based logging API that is simple, lightweight and performant
MIT License
1.32k stars 153 forks source link

Unquoted $PROJECT_DIR does not allow project paths with spaces #30

Closed rben01 closed 8 years ago

rben01 commented 8 years ago

In the documentation for setting up CleanroomLogger, it says to add the line

$PROJECT_DIR/Carthage/Checkouts/CleanroomLogger/BuildControl/bin/stripCarthageFrameworks.sh

as the run script. $PROJECT_DIR should be double-quoted so that spaces are expanded correctly, like so:

"$PROJECT_DIR"/Carthage/Checkouts/CleanroomLogger/BuildControl/bin/stripCarthageFrameworks.sh
emaloney commented 8 years ago

Thanks a lot for pointing this out, Robert.