Xcode14.3.1打包报错Command PhaseScriptExecution failed with a nonzero exit code

真机运行编译正常,一打包就报错
rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/d9889869-120b-11ee-b796-7a03568b17ac/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]
Command PhaseScriptExecution failed with a nonzero exit code
还以为是开发的SDK有问题了

查找资料
解决方案1(推荐)

使用sudo gem update cocoapods更新cocoapods,目前我的更新到了1.12.1版本
删除项目根目录下的Podfile.lock、项目名.xcworkspace文件和Pods文件夹
重新使用 pod install,再次打包正常 (已解决)
解决方案2

在Xcode项目中 Pods -> Targets Support Files -> Pods-项目名 -> Pods-项目名-frameworks 中(大约在第44行)将

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

替换为

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

Xcode14.3.1打包报错Command PhaseScriptExecution failed with a nonzero exit code_第1张图片
这段代码主要是用于将动态库(即.framework文件)复制到Xcode项目的build目录下。

具体来说,{TARGET_BUILD_DIR}表示的是build目录的路径,${FRAMEWORKS_FOLDER_PATH}表示的是在build目录中所有framework的存储位置

参考链接

你可能感兴趣的:(蓝桥杯,职场和发展)