bielikb / xcframeworks

Demonstration of creating and integrating xcframeworks and their co-op with static libraries and Swift packages
MIT License
536 stars 46 forks source link

Readme xcodebuild syntax issue #11

Closed Baschdi closed 2 years ago

Baschdi commented 3 years ago

The following content in the readme isn't valid syntax and won't succeed:

-destination destination="generic/platform=iOS Simulator" \
...
-destination destination="generic/platform=iOS" \

It should be:

-destination "generic/platform=iOS Simulator" \
...
-destination "generic/platform=iOS" \

I think there's a total of 3 mentions of the incorrect syntax.

bielikb commented 2 years ago

@Baschdi thanks for spotting this! I just corrected it in the README ;)