Commit 1b7d5ae3 authored by Samuel E. Giddins's avatar Samuel E. Giddins

Merge pull request #3702 from CocoaPods/seg-fix-frameworks-script

[EmbedFrameworksScript] Allow submitting to the MAS
parents 75366ff6 4624227b
...@@ -54,7 +54,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -54,7 +54,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
* Cache globbing in `PathList` to speed up `pod install`. * Cache globbing in `PathList` to speed up `pod install`.
[Vincent Isambart](https://github.com/vincentisambart) [Vincent Isambart](https://github.com/vincentisambart)
* CocoaPods will validate your podfile and try to identify problems * CocoaPods will validate your podfile and try to identify problems
and conflicts in how you've specified the dependencies and conflicts in how you've specified the dependencies
[Hugo Tunius](https://github.com/k0nserv) [Hugo Tunius](https://github.com/k0nserv)
[#995](https://github.com/CocoaPods/CocoaPods/issues/995) [#995](https://github.com/CocoaPods/CocoaPods/issues/995)
...@@ -80,6 +80,12 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -80,6 +80,12 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[#2747](https://github.com/CocoaPods/CocoaPods/issues/2747) [#2747](https://github.com/CocoaPods/CocoaPods/issues/2747)
[#2704](https://github.com/CocoaPods/CocoaPods/issues/2704) [#2704](https://github.com/CocoaPods/CocoaPods/issues/2704)
* The embed frameworks script will now properly filter out symlinks to the
directories that are filtered, which fixes an issue when submitting to the
Mac App Store.
[Samuel Giddins](https://github.com/segiddins)
## 0.37.2 ## 0.37.2
##### Enhancements ##### Enhancements
......
...@@ -63,8 +63,8 @@ module Pod ...@@ -63,8 +63,8 @@ module Pod
fi fi
# use filter instead of exclude so missing patterns dont' throw errors # use filter instead of exclude so missing patterns dont' throw errors
echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers/\" --filter \"- PrivateHeaders/\" --filter \"- Modules/\" ${source} ${destination}" echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" ${source} ${destination}"
rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
# Resign the code if required by the build settings to avoid unstable apps # Resign the code if required by the build settings to avoid unstable apps
if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
code_sign "${destination}/$1" code_sign "${destination}/$1"
......
Subproject commit d6193ae890a8d84d715efbc98e80efb2c4c0e264 Subproject commit 5eb5a14245f90d0a7cce21113a7fafaec022423f
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment