Commit 320fa195 authored by Albert Bori's avatar Albert Bori

Update embed_frameworks_script.rb

Fixed symlink framework issue caused by spaces in `source`
parent 575cb1f8
...@@ -57,7 +57,7 @@ module Pod ...@@ -57,7 +57,7 @@ module Pod
local source="${BUILT_PRODUCTS_DIR}/#{target_definition.label}/$1" local source="${BUILT_PRODUCTS_DIR}/#{target_definition.label}/$1"
local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
if [ -L ${source} ]; then if [ -L "${source}" ]; then
echo "Symlinked..." echo "Symlinked..."
source=$(readlink "${source}") source=$(readlink "${source}")
fi fi
......
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