美文网首页
rsync error: some files could no

rsync error: some files could no

作者: 一个默默无闻的程序猿 | 来源:发表于2023-07-04 11:38 被阅读0次

some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/9e200cfa-7d96-11ed-886f-a23c4f261b56/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]

解决方法如下:

找到项目所在路径/Pods/Target Support Files/Pods-xxx/Pods-xxx-frameworks.sh

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

修改成

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

如图

image.png

相关文章

网友评论

      本文标题:rsync error: some files could no

      本文链接:https://www.haomeiwen.com/subject/xxthudtx.html