Commit 14542d80 authored by Blake Watters's avatar Blake Watters

Add `--copy-links` argument to rsync invocation during Resource Bundle copying.…

Add `--copy-links` argument to rsync invocation during Resource Bundle copying. refs CocoaPods/CocoaPods#1309

This ensures that destination files are copied into the application bundle instead of symbolic links preventing the creation of invalid apps during Archive.
parent 4728bf84
......@@ -124,7 +124,7 @@ EOS
RSYNC_CALL = <<EOS
rsync -avr --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rm -f "$RESOURCES_TO_COPY"
EOS
......
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