错误
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}")"
网友评论