[iOS]Xcode15.1编译报错Command PhaseScriptExecution failed with a nonzero exit code

使用Xcode 15.1打包或者编译时,报错Command PhaseScriptExecution failed with a nonzero exit code.

方法一:
在项目中搜索

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

修改为

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

方法二:
升级Xcode 15.2, 升级后这个错误就没了,可是会有新的错误.

 Sandbox: rsync(xxxx) deny(1) file-write-create

[iOS]Xcode15.1编译报错Command PhaseScriptExecution failed with a nonzero exit code_第1张图片

解决方法参考文章:[iOS]Xcode 15.2 Sandbox: rsync(xxxx) deny(1) file-write-create

你可能感兴趣的:(Xcode,iOS,ios)