錯誤
Command PhaseScriptExecution failed with a nonzero exit code
處理方法
在工程中 找到 Pods-[your-project-name]-frameworks.sh (...-frameworks.sh)
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
修改為
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi
主要修改的代碼
source="$(readlink "${source}")" -----> source="$(readlink -f "${source}")"