報(bào)錯(cuò):
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 的問(wèn)題
解決方法:
找到項(xiàng)目下的/Pods/Target Support Files/Pods-xxx/Pods-xxx-frameworks.s文件
把
source="$(readlink "${source}")"
修改成下面的就可以了
source="$(readlink -f "${source}")"