报错:
Showing Recent Messages
rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/4ff29661-3588-11ef-9513-e2437461156c/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]
是Pods-xxx-frameworks.sh 的问题
解决方法:
找到项目下的/Pods/Target Support Files/Pods-xxx/Pods-xxx-frameworks.s文件
把
source="$(readlink "${source}")"
修改成下面的就可以了
source="$(readlink -f "${source}")"