Commit 9aec4857 authored by Kyle Fuller's avatar Kyle Fuller

[Resources] Fix issue installing to target without resources

Fixes #2083
parent 12a0868a
...@@ -44,6 +44,11 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides ...@@ -44,6 +44,11 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[Kyle Fuller](https://github.com/kylef) [Kyle Fuller](https://github.com/kylef)
[#2684](https://github.com/CocoaPods/CocoaPods/issues/2684) [#2684](https://github.com/CocoaPods/CocoaPods/issues/2684)
* Fixes an issue when installing Pods with resources to a target which
doesn't have any resources.
[Kyle Fuller](https://github.com/kylef)
[#2083](https://github.com/CocoaPods/CocoaPods/issues/2083)
## 0.34.2 ## 0.34.2
......
...@@ -80,6 +80,8 @@ module Pod ...@@ -80,6 +80,8 @@ module Pod
#!/bin/sh #!/bin/sh
set -e set -e
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY" > "$RESOURCES_TO_COPY"
......
Subproject commit 933d831a7f92c47f5b43f15e05207ca123a169b6 Subproject commit ae87cdaa7f0c96ad246ddd804a08bc4260018548
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