Xcode打包失败出现:Command PhaseScriptE

2023-07-19  本文已影响0人  娜尔丶

Xcode打包失败出现:Command PhaseScriptExecution failed with a nonzero exit code” on “{PODS_ROOT}/S... 错误 解决办法:全局搜 source="(readlink "{source}")",找到Pods-项目名-frameworks文件源代码,把source="(readlink "{source}")" 替换为 source="(readlink -f "${source}")" 再次Archive,打包成功

Search for the following line in your XCode project:

source="$(readlink "${source}")"

Now, replace all of its ocurrences with the following code:

source="$(readlink -f "${source}")"

That should do the trick while we get to know more about this issue.
上一篇下一篇

猜你喜欢

热点阅读