Fixed code signing release frameworks

main
Sam Lantinga 2014-07-07 23:40:10 -07:00
parent 962c9911ce
commit 9bd483439e
1 changed files with 3 additions and 10 deletions

View File

@ -14,20 +14,16 @@ if [ -z "$CODE_SIGN_IDENTITY" ] ; then
fi
fi
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
FRAMEWORK_DIR="${TARGET_BUILD_DIR}"
# Loop through all frameworks
FRAMEWORKS=`find "${FRAMEWORK_DIR}" -type d -name "*.framework" | sed -e "s/\(.*\)/\1\/Versions\/A\//"`
FRAMEWORKS=`find "${FRAMEWORK_DIR}" -type d -name "*.framework"`
RESULT=$?
if [[ $RESULT != 0 ]] ; then
exit 1
fi
echo "Found:"
echo "${FRAMEWORKS}"
echo "Found: ${FRAMEWORKS}"
for FRAMEWORK in $FRAMEWORKS;
do
@ -38,6 +34,3 @@ do
exit 1
fi
done
# restore $IFS
IFS=$SAVEIFS