PhaseScriptExecution [CP] Embed Pods Frameworks issue in XCode 14.3
15 May 2023If you are getting the:
PhaseScriptExecution [CP] Embed Pods Frameworks issue in
the workaround is to update the generated
*-frameworks.sh
files
to add the -f
flag to the call to readlink.
This is most likely needs to be done only for your main frameworks.sh file
replace
source="$(readlink "${source}")"
with
source="$(readlink -f "${source}")"