升级到最新的Xcode 14.3 打包Flutter项目 报错PhaseScriptExecution failed with a nonzero exit code
解决方法
1、搜索
source="$(readlink "${source}")"
2、将该代码替换成
source="$(readlink -f "${source}")"
3、如果pod install 会重置回去,需要重新设置
解决方法
1、搜索
source="$(readlink "${source}")"
2、将该代码替换成
source="$(readlink -f "${source}")"
3、如果pod install 会重置回去,需要重新设置
本文标题:Xcode 14.3 PhaseScriptExecution
本文链接:https://www.haomeiwen.com/subject/wuiyydtx.html
网友评论