Commit b8dc448b authored by Tim Rosenblatt's avatar Tim Rosenblatt Committed by Samuel E. Giddins

bugfix for pods containing swift frameworks

parent c3dac7f9
......@@ -45,7 +45,12 @@ module Pod
install_framework()
{
local source="${BUILT_PRODUCTS_DIR}/$1"
if [ -r "${BUILT_PRODUCTS_DIR}/#{target_definition.label}/$1" ]; then
local source="${BUILT_PRODUCTS_DIR}/#{target_definition.label}/$1"
else
local source="${BUILT_PRODUCTS_DIR}/$1"
fi
local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
if [ -L "${source}" ]; then
......
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