美文网首页
Xcode打包失败出现:Command PhaseScriptE

Xcode打包失败出现:Command PhaseScriptE

作者: 娜尔丶 | 来源:发表于2023-07-19 01:15 被阅读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.

相关文章

网友评论

      本文标题:Xcode打包失败出现:Command PhaseScriptE

      本文链接:https://www.haomeiwen.com/subject/fasoudtx.html