Commit 6a456add authored by Kyle Fuller's avatar Kyle Fuller

Merge commit #3390

parents 31df15e9 92725122
......@@ -33,6 +33,11 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[#3384](https://github.com/CocoaPods/CocoaPods/pull/3383)
[#3358](https://github.com/CocoaPods/CocoaPods/pull/3358)
* Fixes a problem with code signing when integrating CocoaPods
into a Today Widget extension.
[Christian Sampaio](https://github.com/chrisfsampaio)
[#3390](https://github.com/CocoaPods/CocoaPods/pull/3390)
## 0.36.3
......
......@@ -63,8 +63,8 @@ module Pod
fi
# 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/\" ${source} ${destination}"
rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" "${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}"
# Resign the code if required by the build settings to avoid unstable apps
if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
code_sign "${destination}/$1"
......
Subproject commit 3c638589f3dcc34f56b475e694fcfc1f8745cae7
Subproject commit 3e8ec34e84b261eb9bd3fd5352ac2107660cff3e
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