美文网首页
Upgrade from Xcode 14.2 to 14.3

Upgrade from Xcode 14.2 to 14.3

作者: zhangyin | 来源:发表于2023-04-22 20:31 被阅读0次

https://github.com/CocoaPods/CocoaPods/issues/11808

Upgrade from Xcode 14.2 to 14.3 rsync: link_stat failed: No such file or directory (2) for pods that were working earlier. #11808

Workaround is to update all the generated ...-frameworks.sh files to add the -f flag to the call to readlink. In other words, replace
source="(readlink "{source}")"
with
source="(readlink -f "{source}")"

This is my first time contributing to CocoaPods though, so take it with a grain of salt!

Pods-项目名-frameworks.sh文件:
source="$(readlink "${source}")"
替换为
source="$(readlink -f "${source}")"真的有效。Xcode14.3可以正常Archive !
[@chrisvasselli](https://github.com/chrisvasselli) 非常感谢您做的贡献。

相关文章

网友评论

      本文标题:Upgrade from Xcode 14.2 to 14.3

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