Upgrade from Xcode 14.2 to 14.3 rsync: link_stat failed: No such file or directory (2) for pods t...

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) 非常感谢您做的贡献。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容