iOS-bug Xcode 14.3 archive打包失败,command PhasescriptExecution failed with a nonzero exit code

问题

升级到Xcode14.3后,打包出现如下问题

command PhasescriptExecution failed with a nonzero exit code

解决方案 

1、在Xcode中找到该路径文件,Pods/Targets Support Files/Pods-xxxxx/Pods-xxxx-frameworks.sh

2、找到source="$(readlink "${source}")" 

更改为source="$(readlink -f "${source}")"

3、修改完成后,重新archive即可成功,亲测有效。

猜你喜欢

转载自blog.csdn.net/qq_43441647/article/details/130010056