Fixing a common error of XCode Error PhaseScriptExecution failed with a nonzero exit code
If you go to Target Support Files in your pod files and go to the frameworks.sh and change the
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
To "by adding -f "
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi
Sometimes works but what I had to do is
Erase arm64 from Excluded_ARCH files and replace with $(inheirited)
Clean Build folder and Archive
Download
0 formats
No download links available.
XCode Error PhaseScriptExecution failed with a nonzero exit code when you update from 14.2 to 14.3 | NatokHD